| 123456789101112131415161718192021 |
- package winningproject
- import (
- "time"
- )
- type OilWinningProject struct {
- Id int `xorm:"not null pk autoincr INT(10)"`
- SupplierCertid int `xorm:"not null comment('供方准入证书信息表ID') INT(10)"`
- AwardName string `xorm:"comment('奖项名称') VARCHAR(100)"`
- WinningTime time.Time `xorm:"comment('获奖时间') DATETIME"`
- Authorities string `xorm:"not null default '0' comment('颁奖机关') VARCHAR(10)"`
- Remark string `xorm:"comment('备注') VARCHAR(500)"`
- IsDelete int `xorm:"default 0 comment('删除状态,0正常,1已删除') INT(10)"`
- CreateOn time.Time `xorm:"DATETIME"`
- CreateuserId int `xorm:"INT(10)"`
- CreateBy string `xorm:"VARCHAR(50)"`
- ModifiedOn time.Time `xorm:"DATETIME"`
- ModifieduserId int `xorm:"INT(10)"`
- ModifiedBy string `xorm:"VARCHAR(50)"`
- }
|