1234567891011121314
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaFlashBuyCustomer struct {
  6. FlashBuyCustomerId string `xorm:"not null VARCHAR(64)"`
  7. FlashBuyId string `xorm:"VARCHAR(64)"`
  8. CustomerId string `xorm:"VARCHAR(64)"`
  9. IsNew int `xorm:"TINYINT(1)"`
  10. IsAttend int `xorm:"TINYINT(1)"`
  11. CreateDate time.Time `xorm:"DATETIME"`
  12. }