ta_customer_flash_buy.go 631B

12345678910111213141516171819
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaCustomerFlashBuy struct {
  6. CustomerFlashBuyId string `xorm:"not null pk VARCHAR(64)"`
  7. FlashBuyId string `xorm:"VARCHAR(64)"`
  8. CustomerId string `xorm:"VARCHAR(64)"`
  9. ValidateStart time.Time `xorm:"DATETIME"`
  10. ValidateEnd time.Time `xorm:"DATETIME"`
  11. CreateDate time.Time `xorm:"DATETIME"`
  12. Status int `xorm:"SMALLINT(6)"`
  13. VerifyStatus string `xorm:"VARCHAR(32)"`
  14. VerifyDate time.Time `xorm:"DATETIME"`
  15. CaseId string `xorm:"VARCHAR(64)"`
  16. OrgId string `xorm:"VARCHAR(64)"`
  17. }