蛋蛋星球-客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
1.1 KiB

  1. package md
  2. type WalletFlowNode struct {
  3. Id int64 `json:"id"`
  4. Uid int64 `json:"uid"` // 用户 ID
  5. Direction int `json:"direction"` // 方向:1.收入 2.支出
  6. Amount string `json:"amount"` // 变动金额
  7. BeforeAmount string `json:"before_amount"` // 变动前金额
  8. AfterAmount string `json:"after_amount"` // 变动后金额
  9. SysFee string `json:"sys_fee"` // 手续费
  10. OrdId string `json:"ord_id"` // 对应订单编号
  11. Title string `json:"title"` // 标题
  12. Kind int `json:"kind"` // 1:管理员操作增加余额 2:管理员操作扣除余额 3:蛋蛋能量兑换余额 4:余额兑换蛋蛋能量
  13. State int `json:"state"` // 1未到账,2已到账
  14. Memo string `json:"memo"` // 备注
  15. CreateTime string `json:"create_time"` // 创建时间
  16. UpdateTime string `json:"update_time"` // 更新时间
  17. }
  18. type GetAmountFlowResp struct {
  19. List []WalletFlowNode `json:"list"`
  20. Paginate Paginate `json:"paginate"`
  21. }
  22. type WithdrawGetAmountResp struct {
  23. Amount string `json:"amount"` // 余额
  24. }