common_def.go
953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package common
//type ClubCreaterIncomeInfo struct {
// UID uint32 `json:"uid"`
// Fee float32 `json:"fee"`
// Insurance float32 `json:"insurance"`
// Jackpot float32 `json:"jackpot"`
//}
type ClubCreaterIncomeInfo struct {
UID uint32 `json:"uid"`
Fee int64 `json:"fee"`
Insurance int64 `json:"insurance"`
Jackpot int64 `json:"jackpot"`
Total int64 `json:"total"`
}
type AlliCreaterIncomeInfo struct {
UID uint32 `json:"uid"`
Fee int64 `json:"fee"`
Insurance int64 `json:"insurance"`
Jackpot int64 `json:"jackpot"`
Total int64 `json:"total"`
}
type ProxyIncomeInfo struct {
UID uint32 `json:"uid"`
Fee int64 `json:"fee"`
Insurance int64 `json:"insurance"`
Jackpot int64 `json:"jackpot"`
}
type PlatformIncomeInfo struct {
UID uint32 `json:"uid"`
Fee int64 `json:"fee"`
Insurance int64 `json:"insurance"`
Jackpot int64 `json:"jackpot"`
}