Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hilo-user
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenweijian
hilo-user
Commits
13ff203f
Commit
13ff203f
authored
Feb 20, 2023
by
hujiebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:bagId
parent
8323ee27
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
0 deletions
+3
-0
bag.go
cv/user_cv/bag.go
+1
-0
user_bag.go
domain/model/bag_m/user_bag.go
+1
-0
bag.go
route/user_r/bag.go
+1
-0
No files found.
cv/user_cv/bag.go
View file @
13ff203f
...
...
@@ -5,6 +5,7 @@ import (
)
type
UserBag
struct
{
BagId
mysql
.
ID
`json:"bagId"`
// 背包id
ResType
mysql
.
Type
`json:"resType"`
// 道具类型 1:礼物道具
ResId
mysql
.
ID
`json:"resId"`
// 道具资源id
Name
string
`json:"name"`
// 资源名称
...
...
domain/model/bag_m/user_bag.go
View file @
13ff203f
...
...
@@ -27,6 +27,7 @@ func GetUserValidUserBag(model *domain.Model, userId mysql.ID, resType res_e.Res
if
err
:=
model
.
DB
()
.
Model
(
UserBag
{})
.
Where
(
"end_time > ?"
,
time
.
Now
())
.
Where
(
"count > 0"
)
.
Where
(
"res_type = ?"
,
resType
)
.
Where
(
"user_id = ?"
,
userId
)
.
Find
(
&
res
)
.
Error
;
err
!=
nil
{
return
nil
,
err
}
...
...
route/user_r/bag.go
View file @
13ff203f
...
...
@@ -45,6 +45,7 @@ func UserBag(c *gin.Context) (*mycontext.MyContext, error) {
for
_
,
bagGift
:=
range
userBagGifts
{
if
gift
,
ok
:=
allValidGifts
[
bagGift
.
ResId
];
ok
{
results
=
append
(
results
,
user_cv
.
UserBag
{
BagId
:
bagGift
.
ID
,
ResType
:
res_e
.
ResUserBagGift
,
ResId
:
gift
.
ID
,
Name
:
gift
.
Name
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment