Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hilo-common
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-common
Commits
a4d76c98
Commit
a4d76c98
authored
Apr 11, 2023
by
chenweijian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
发钻石小助手
parent
11b97721
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
diamond.go
txop/diamond_tx/diamond.go
+9
-1
No files found.
txop/diamond_tx/diamond.go
View file @
a4d76c98
package
diamond_tx
package
diamond_tx
import
(
import
(
"fmt"
"git.hilo.cn/hilo-common/domain"
"git.hilo.cn/hilo-common/domain"
"git.hilo.cn/hilo-common/internal/enum/diamond_e"
"git.hilo.cn/hilo-common/internal/enum/diamond_e"
"git.hilo.cn/hilo-common/internal/enum/msg_e"
"git.hilo.cn/hilo-common/internal/model/diamond_m"
"git.hilo.cn/hilo-common/internal/model/diamond_m"
"git.hilo.cn/hilo-common/resource/mysql"
"git.hilo.cn/hilo-common/resource/mysql"
"git.hilo.cn/hilo-common/txop/msg"
)
)
// 下发钻石
// 下发钻石
func
SendDiamond
(
model
*
domain
.
Model
,
userId
mysql
.
ID
,
opt
diamond_e
.
OperateType
,
originId
mysql
.
ID
,
diamondNum
mysql
.
Num
)
error
{
func
SendDiamond
(
model
*
domain
.
Model
,
userId
mysql
.
ID
,
opt
diamond_e
.
OperateType
,
originId
mysql
.
ID
,
diamondNum
mysql
.
Num
,
msgType
...
msg_e
.
MsgUserRecordType
)
error
{
diamondAccount
,
err
:=
diamond_m
.
GetDiamondAccountByUserId
(
model
,
userId
)
diamondAccount
,
err
:=
diamond_m
.
GetDiamondAccountByUserId
(
model
,
userId
)
if
err
!=
nil
{
if
err
!=
nil
{
return
err
return
err
...
@@ -20,5 +24,9 @@ func SendDiamond(model *domain.Model, userId mysql.ID, opt diamond_e.OperateType
...
@@ -20,5 +24,9 @@ func SendDiamond(model *domain.Model, userId mysql.ID, opt diamond_e.OperateType
if
err
:=
diamondSendAccountDetail
.
Persistent
();
err
!=
nil
{
if
err
:=
diamondSendAccountDetail
.
Persistent
();
err
!=
nil
{
return
err
return
err
}
}
if
len
(
msgType
)
>
0
{
// 小助手提示获得钻石
msg
.
SendLittleAssistantMsg
(
model
,
userId
,
msgType
[
0
],
fmt
.
Sprintf
(
"%d"
,
diamondNum
),
""
,
""
,
""
,
""
)
}
return
nil
return
nil
}
}
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