ta_sta_customer_daily.go 248B

123456789
  1. package model
  2. type TaStaCustomerDaily struct {
  3. Id int `xorm:"not null pk autoincr INT(11)"`
  4. OrgId string `xorm:"VARCHAR(64)"`
  5. CaseId string `xorm:"VARCHAR(64)"`
  6. StaDate string `xorm:"VARCHAR(20)"`
  7. Amount int `xorm:"INT(11)"`
  8. }