| 1234567891011121314151617181920212223 |
- package performance
- import "time"
- type OilThreeYearsPerformance struct {
- Id int `xorm:"not null pk autoincr INT(10)"`
- SupplierCertId int `xorm:"INT(10)"`
- ProjectName string `xorm:"VARCHAR(100)"`
- BearContent string `xorm:"VARCHAR(100)"`
- OwnerUnit string `xorm:"VARCHAR(100)"`
- StartTime time.Time `xorm:"DATETIME"`
- StopTime time.Time `xorm:"DATETIME"`
- Tudge int `xorm:"INT(10)"`
- UseItemValue string `xorm:"VARCHAR(20)"`
- Remark string `xorm:"VARCHAR(500)"`
- IsDelete int `xorm:"INT(10)"`
- CreateOn time.Time `xorm:"DATETIME created"` //创建时间
- CreateUserId int `xorm:"INT(10)"`
- CreateBy string `xorm:"VARCHAR(50)"` //创建人
- ModifiedOn time.Time `xorm:"DATETIME updated"`
- ModifiedUserId int `xorm:"INT(10)"`
- ModifiedBy string `xorm:"VARCHAR(50)"`
- }
|