智盟项目
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.

26 line
1.2 KiB

  1. package model
  2. import (
  3. "time"
  4. )
  5. type MasterWithdrawalFlow struct {
  6. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  7. Uid string `json:"uid" xorm:"VARCHAR(255)"`
  8. Time time.Time `json:"time" xorm:"DATETIME"`
  9. UpdateTime time.Time `json:"update_time" xorm:"DATETIME"`
  10. Remark string `json:"remark" xorm:"VARCHAR(255)"`
  11. Alipay string `json:"alipay" xorm:"VARCHAR(255)"`
  12. AlipayName string `json:"alipay_name" xorm:"VARCHAR(255)"`
  13. Amount string `json:"amount" xorm:"default 0.00 DECIMAL(20,2)"`
  14. Fee string `json:"fee" xorm:"default 0.00 DECIMAL(20,2)"`
  15. Reason string `json:"reason" xorm:"VARCHAR(255)"`
  16. Status string `json:"status" xorm:"VARCHAR(255)"`
  17. CheckTime time.Time `json:"check_time" xorm:"DATETIME"`
  18. Img string `json:"img" xorm:"VARCHAR(500)"`
  19. RealAmount string `json:"real_amount" xorm:"default 0.00 DECIMAL(20,2)"`
  20. HasInvoice int `json:"has_invoice" xorm:"default 0 comment('是否有发票') INT(1)"`
  21. InvoiceBili string `json:"invoice_bili" xorm:"comment('发票比例') VARCHAR(255)"`
  22. ExtendUid string `json:"extend_uid" xorm:"VARCHAR(255)"`
  23. }