- package model
-
- import (
- "time"
- )
-
- type TaLuckdrawCustomer struct {
- LuckdrawCustomerId string `xorm:"not null VARCHAR(64)"`
- LuckdrawId string `xorm:"VARCHAR(64)"`
- CustomerId string `xorm:"VARCHAR(64)"`
- IsNew int `xorm:"TINYINT(1)"`
- ShareNum int `xorm:"INT(11)"`
- ShareSurplusNum int `xorm:"INT(11)"`
- SurplusNum int `xorm:"INT(11)"`
- CreateDate time.Time `xorm:"DATETIME"`
- }
|