ta_luckdraw_customer.go 471B

12345678910111213141516
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaLuckdrawCustomer struct {
  6. LuckdrawCustomerId string `xorm:"not null VARCHAR(64)"`
  7. LuckdrawId string `xorm:"VARCHAR(64)"`
  8. CustomerId string `xorm:"VARCHAR(64)"`
  9. IsNew int `xorm:"TINYINT(1)"`
  10. ShareNum int `xorm:"INT(11)"`
  11. ShareSurplusNum int `xorm:"INT(11)"`
  12. SurplusNum int `xorm:"INT(11)"`
  13. CreateDate time.Time `xorm:"DATETIME"`
  14. }