智盟项目
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

master_amount_flow.go 860 B

1年前
1年前
1年前
1年前
1234567891011121314151617181920
  1. package model
  2. import (
  3. "time"
  4. )
  5. type MasterAmountFlow 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. BeforeAmount string `json:"before_amount" xorm:"default 0.00 DECIMAL(20,2)"`
  10. Amount string `json:"amount" xorm:"default 0.00 DECIMAL(20,2)"`
  11. AfterAmount string `json:"after_amount" xorm:"default 0.00 DECIMAL(20,2)"`
  12. Platform string `json:"platform" xorm:"VARCHAR(255)"`
  13. Oid string `json:"oid" xorm:"VARCHAR(255)"`
  14. Title string `json:"title" xorm:"VARCHAR(255)"`
  15. FlowType string `json:"flow_type" xorm:"VARCHAR(255)"`
  16. IncomeType int `json:"income_type" xorm:"default 0 INT(1)"`
  17. ExtendUid string `json:"extend_uid" xorm:"VARCHAR(255)"`
  18. }