common_def.go 953 Bytes
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"`
}