ta_statistics_card_coupon_usage.go 933B

12345678910111213141516171819202122232425
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaStatisticsCardCouponUsage struct {
  6. CardCouponUsageId string `xorm:"not null pk VARCHAR(64)"`
  7. CardCouponType string `xorm:"VARCHAR(32)"`
  8. CardCouponName string `xorm:"VARCHAR(64)"`
  9. CardCouponId string `xorm:"VARCHAR(64)"`
  10. UsedItemId string `xorm:"VARCHAR(64)"`
  11. UsedItemName string `xorm:"VARCHAR(32)"`
  12. ReceiveType string `xorm:"VARCHAR(32)"`
  13. CustomerId string `xorm:"VARCHAR(64)"`
  14. CustomerName string `xorm:"VARCHAR(64)"`
  15. CustomerPhone string `xorm:"VARCHAR(100)"`
  16. SalesId string `xorm:"VARCHAR(64)"`
  17. SalesName string `xorm:"VARCHAR(32)"`
  18. ValidDate time.Time `xorm:"DATETIME"`
  19. ReceiveDate time.Time `xorm:"DATETIME"`
  20. VerifyDate time.Time `xorm:"DATETIME"`
  21. VerifyStatus string `xorm:"VARCHAR(32)"`
  22. Status int `xorm:"SMALLINT(6)"`
  23. }