ta_customer_vip.go 820B

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