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

1 年之前
1 年之前
1 年之前
1234567891011121314151617
  1. package model
  2. import (
  3. "time"
  4. )
  5. type MasterAmount struct {
  6. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  7. Uid string `json:"uid" xorm:"comment('master表的id') unique VARCHAR(255)"`
  8. Amount string `json:"amount" xorm:"default 0.00 DECIMAL(20,2)"`
  9. Type string `json:"type" xorm:"VARCHAR(255)"`
  10. UpdateTime time.Time `json:"update_time" xorm:"DATETIME"`
  11. LastMonthAmount string `json:"last_month_amount" xorm:"DECIMAL(20,2)"`
  12. MonthAmount string `json:"month_amount" xorm:"DECIMAL(20,2)"`
  13. ChangeTime time.Time `json:"change_time" xorm:"comment('标记本月是否把预估结算佣金转换') DATETIME"`
  14. ExtendUid string `json:"extend_uid" xorm:"VARCHAR(255)"`
  15. }