Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hilo-group
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
hujiebin
hilo-group
Commits
7db0fc68
Commit
7db0fc68
authored
Mar 07, 2023
by
hujiebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:day
parent
85969f50
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
group_grade.go
domain/model/groupPower_m/group_grade.go
+3
-3
send_gift.go
domain/service/event_s/send_gift.go
+1
-1
No files found.
domain/model/groupPower_m/group_grade.go
View file @
7db0fc68
...
...
@@ -9,7 +9,7 @@ import (
"time"
)
type
GroupPowerExp
struct
{
type
GroupPower
Day
Exp
struct
{
Date
string
GroupPowerId
mysql
.
ID
Exp
int64
...
...
@@ -38,12 +38,12 @@ func IncrGroupPowerExp(txModel *domain.Model, groupPowerId mysql.ID, exp int64)
}()
// 增加家族经验-天
date
:=
time
.
Now
()
.
Format
(
"2006-01-02"
)
gpe
:=
&
GroupPowerExp
{
gpe
:=
&
GroupPower
Day
Exp
{
Date
:
date
,
GroupPowerId
:
groupPowerId
,
Exp
:
exp
,
}
if
err
=
txModel
.
DB
()
.
Model
(
GroupPowerExp
{})
.
Clauses
(
clause
.
OnConflict
{
Columns
:
[]
clause
.
Column
{{
Name
:
"date"
},
{
Name
:
"group_power_id"
}},
if
err
=
txModel
.
DB
()
.
Model
(
GroupPower
Day
Exp
{})
.
Clauses
(
clause
.
OnConflict
{
Columns
:
[]
clause
.
Column
{{
Name
:
"date"
},
{
Name
:
"group_power_id"
}},
DoUpdates
:
clause
.
Assignments
(
map
[
string
]
interface
{}{
"exp"
:
gorm
.
Expr
(
"exp + ?"
,
gpe
.
Exp
)})})
.
Create
(
gpe
)
.
Error
;
err
!=
nil
{
return
err
...
...
domain/service/event_s/send_gift.go
View file @
7db0fc68
...
...
@@ -57,7 +57,7 @@ func (s *GiftSendEventService) Consume() error {
return
nil
}
if
err
:=
gift_ev
.
PublishSendGiftEvent
(
model
,
sendGiftEvent
);
err
!=
nil
{
model
.
Log
.
Errorf
(
"PublishSendGiftEvent fail,event:%v,err:%v"
,
cpEvent
,
err
)
model
.
Log
.
Errorf
(
"PublishSendGiftEvent fail,event:%v,err:%v"
,
string
(
cpEvent
.
Payload
)
,
err
)
return
err
}
// 标记已经处理
...
...
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