1234567891011121314151617181920212223
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaVipCardChild struct {
  6. VipCardChildId string `xorm:"not null pk VARCHAR(64)"`
  7. VipCardId string `xorm:"VARCHAR(64)"`
  8. VipCardChildCode string `xorm:"VARCHAR(255)"`
  9. Status int `xorm:"SMALLINT(6)"`
  10. CustomerId string `xorm:"VARCHAR(64)"`
  11. CustomerTel string `xorm:"VARCHAR(50)"`
  12. CreateDate time.Time `xorm:"DATETIME"`
  13. ActiveDate time.Time `xorm:"DATETIME"`
  14. Amount string `xorm:"DECIMAL(8,2)"`
  15. SalesId string `xorm:"VARCHAR(64)"`
  16. SalesName string `xorm:"VARCHAR(50)"`
  17. BeginDate time.Time `xorm:"DATETIME"`
  18. EndDate time.Time `xorm:"DATETIME"`
  19. CaseId string `xorm:"VARCHAR(64)"`
  20. OrgId string `xorm:"VARCHAR(64)"`
  21. }