| 1234567891011121314151617181920212223242526 |
- package supplierfile
- import (
- "time"
- )
- type OilSupplierFile struct {
- Id int `xorm:"not null pk autoincr INT(10)"`
- AppendClassId int `xorm:"INT(10)"`
- SupplierCertSubId int `xorm:"INT(10)"`
- NeedFileType string `xorm:"VARCHAR(50)"`
- NeedFileCode string `xorm:"VARCHAR(20)"`
- FileExt string `xorm:"VARCHAR(10)"`
- FileSize int `xorm:"INT(10)"`
- EffectDate time.Time `xorm:"DATETIME"`
- FileUrl string `xorm:"VARCHAR(100)"`
- OtherRemark string `xorm:"VARCHAR(500)"`
- Remark string `xorm:"VARCHAR(500)"`
- IsDelete int `xorm:"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)"`
- }
|