ta_customer_vip_change.go 722B

12345678910111213141516171819202122
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaCustomerVipChange struct {
  6. ChangeId string `xorm:"not null VARCHAR(64)"`
  7. CustomerVipId string `xorm:"VARCHAR(64)"`
  8. CustomerId string `xorm:"VARCHAR(64)"`
  9. OrgId string `xorm:"VARCHAR(64)"`
  10. CaseId string `xorm:"VARCHAR(64)"`
  11. ChangeType string `xorm:"VARCHAR(20)"`
  12. ChangeSource string `xorm:"VARCHAR(20)"`
  13. SourceId string `xorm:"VARCHAR(64)"`
  14. SourceName string `xorm:"VARCHAR(255)"`
  15. Amount string `xorm:"DECIMAL(8,2)"`
  16. FloatType string `xorm:"VARCHAR(5)"`
  17. CreateDate time.Time `xorm:"DATETIME"`
  18. CreateUser string `xorm:"VARCHAR(64)"`
  19. Status int `xorm:"SMALLINT(6)"`
  20. }