td_luckdraw_theme.go 215B

12345678
  1. package model
  2. type TdLuckdrawTheme struct {
  3. Id string `xorm:"not null pk VARCHAR(64)"`
  4. ThemeName string `xorm:"VARCHAR(50)"`
  5. Status int `xorm:"SMALLINT(6)"`
  6. OrgId string `xorm:"VARCHAR(64)"`
  7. }