- package model
-
- import (
- "time"
- )
-
- type TaLuckdrawWriteoff struct {
- Id string `xorm:"not null pk VARCHAR(64)"`
- LuckdrawId string `xorm:"VARCHAR(64)"`
- RecordId string `xorm:"VARCHAR(64)"`
- WriteoffDate time.Time `xorm:"DATETIME"`
- WriteoffUser string `xorm:"VARCHAR(64)"`
- Status int `xorm:"SMALLINT(6)"`
- OrgId string `xorm:"VARCHAR(64)"`
- CaseId string `xorm:"VARCHAR(64)"`
- }
|