Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
go_rely_warehouse
/
zyos_go_mq_consume
Segui
4
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
一个橘子
one_orenge
huangjiajun
7 mesi fa
parent
8043d63974
commit
db6b066e20
5 ha cambiato i file
con
8 aggiunte
e
1 eliminazioni
Visualizzazione separata
Opzioni Diff
Mostra statistiche
Scarica il file Patch
Scarica il file Diff
+2
-0
app/db/db_money_reward.go
+2
-0
app/db/model/money_reward.go
+2
-0
app/db/model/user_extend_total.go
+1
-1
consume/md/consume_key.go
+1
-0
consume/md/md_canal_user_money.go
+ 2
- 0
app/db/db_money_reward.go
Vedi File
@@ -7,6 +7,8 @@ import (
"xorm.io/xorm"
)
//
func GetMoneyReward(eg *xorm.Engine, uid, date, month string) *model.MoneyReward {
var data model.MoneyReward
get, err := eg.Where("uid=? and date=?", uid, date).Get(&data)
+ 2
- 0
app/db/model/money_reward.go
Vedi File
@@ -4,6 +4,8 @@ import (
"time"
)
//
type MoneyReward struct {
Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
Uid int `json:"uid" xorm:"INT(11)"`
+ 2
- 0
app/db/model/user_extend_total.go
Vedi File
@@ -1,5 +1,7 @@
package model
//
type UserExtendTotal struct {
Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
Uid int `json:"uid" xorm:"default 0 INT(11)"`
+ 1
- 1
consume/md/consume_key.go
Vedi File
@@ -435,7 +435,7 @@ var RabbitMqQueueKeyList = []*MqQueue{
ConsumeFunName: "WithdrawConsume",
},
{
ExchangeName: "canal.topic",
ExchangeName: "canal.topic",
//
Name: "canal_fin_user_flow",
Type: TopicQueueType,
IsPersistent: false,
+ 1
- 0
consume/md/md_canal_user_money.go
Vedi File
@@ -24,6 +24,7 @@ type CanalUserMoney struct {
UpdateAt string `json:"update_at" xorm:"updated not null default CURRENT_TIMESTAMP comment('更新时间') TIMESTAMP"`
}
//
type CanalUserMoneyMessage[T any] struct {
Data []T `json:"data"`
Database string `json:"database"`
Scrivi
Anteprima
Caricamento…
Annulla
Salva