智盟项目
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

master_amount.go 767 B

1 år sedan
1 år sedan
1 år sedan
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. }