12345678910111213141516171819202122232425 |
- package entity
- type DeliverBill struct {
- DeliverUserId int `db:"deliver_user_id" json:"deliver_user_id"`
- Fee int `db:"fee" json:"fee"`
- Type string `db:"type" json:"type"`
- CreatedAt string `db:"created_at" json:"created_at"`
- }
- type DeliverAccount struct {
- DeliverUserId int `db:"deliver_user_id" json:"deliver_user_id"`
- Remain int `db:"remain" json:"remain"`
- Withdrawed int `db:"withdrawed" json:"withdrawed"`
- ValidWithdraw int `db:"valid_withdraw" json:"valid_withdraw"`
- Score int `db:"score" json:"score"`
- ScoreCash int `db:"score_cash" json:"score_cash"`
- ScoreCashed int `db:"score_cashed" json:"score_cashed"`
- }
- type DeliverScoreBill struct {
- DeliverUserId int `db:"deliver_user_id" json:"deliver_user_id"`
- Score int `db:"score" json:"score"`
- Type string `db:"type" json:"type"`
- CreatedAt string `db:"created_at" json:"created_at"`
- }
|