ta_luckdraw_writeoff.go 439B

12345678910111213141516
  1. package model
  2. import (
  3. "time"
  4. )
  5. type TaLuckdrawWriteoff struct {
  6. Id string `xorm:"not null pk VARCHAR(64)"`
  7. LuckdrawId string `xorm:"VARCHAR(64)"`
  8. RecordId string `xorm:"VARCHAR(64)"`
  9. WriteoffDate time.Time `xorm:"DATETIME"`
  10. WriteoffUser string `xorm:"VARCHAR(64)"`
  11. Status int `xorm:"SMALLINT(6)"`
  12. OrgId string `xorm:"VARCHAR(64)"`
  13. CaseId string `xorm:"VARCHAR(64)"`
  14. }