2
3

performance.go 908 B

1234567891011121314151617181920212223
  1. package performance
  2. import "time"
  3. type OilThreeYearsPerformance struct {
  4. Id int `xorm:"not null pk autoincr INT(10)"`
  5. SupplierCertId int `xorm:"INT(10)"`
  6. ProjectName string `xorm:"VARCHAR(100)"`
  7. BearContent string `xorm:"VARCHAR(100)"`
  8. OwnerUnit string `xorm:"VARCHAR(100)"`
  9. StartTime time.Time `xorm:"DATETIME"`
  10. StopTime time.Time `xorm:"DATETIME"`
  11. Tudge int `xorm:"INT(10)"`
  12. UseItemValue string `xorm:"VARCHAR(20)"`
  13. Remark string `xorm:"VARCHAR(500)"`
  14. IsDelete int `xorm:"INT(10)"`
  15. CreateOn time.Time `xorm:"DATETIME created"` //创建时间
  16. CreateUserId int `xorm:"INT(10)"`
  17. CreateBy string `xorm:"VARCHAR(50)"` //创建人
  18. ModifiedOn time.Time `xorm:"DATETIME updated"`
  19. ModifiedUserId int `xorm:"INT(10)"`
  20. ModifiedBy string `xorm:"VARCHAR(50)"`
  21. }