oilenterprisepersonnelstructure.go 950 B

123456789101112131415161718192021
  1. package enterprisepersonnelstructure
  2. import (
  3. "time"
  4. )
  5. type OilenterPrisePersonnelStructure struct {
  6. Id int `xorm:"not null pk autoincr INT(10)"`
  7. SupplierCertId int `xorm:"not null comment('供方准入证书信息表ID') INT(10)"`
  8. MainEquipment string `xorm:"comment('主要设备名称') VARCHAR(100)"`
  9. Specifications string `xorm:"not null default '0' comment('规格型号') VARCHAR(10)"`
  10. Number string `xorm:"not null default '0' comment('数量') CHAR(10)"`
  11. Remark string `xorm:"comment('备注') VARCHAR(500)"`
  12. IsDelete int `xorm:"default 0 comment('删除状态,0正常,1已删除') INT(10)"`
  13. CreateOn time.Time `xorm:"DATETIME"`
  14. CreateUserId int `xorm:"INT(10)"`
  15. CreateBy string `xorm:"VARCHAR(50)"`
  16. ModifiedOn time.Time `xorm:"DATETIME"`
  17. ModifiedUserId int `xorm:"INT(10)"`
  18. ModifiedBy string `xorm:"VARCHAR(50)"`
  19. }