oilclassorgsetting.go 1.3 KB

123456789101112131415161718192021222324
  1. package oilclassorgsetting
  2. import (
  3. "time"
  4. )
  5. type OilClassOrgSetting struct {
  6. Id int `xorm:"not null pk autoincr INT(10)"`
  7. ClassId int `xorm:"not null default 0 comment('分类编码ID') INT(11)"`
  8. OrganizeId int `xorm:"not null default 0 comment('单位ID') INT(10)"`
  9. OrganizeName string `xorm:"comment('单位名称') VARCHAR(100)"`
  10. SupplierTypeCode string `xorm:"comment('准入类别代码(1 物资类,2 基建类,3 技术服务类)') VARCHAR(20)"`
  11. SupplierTypeName string `xorm:"comment('准入类别名称(1 物资类,2 基建类,3 技术服务类)') VARCHAR(20)"`
  12. AuditStepCode string `xorm:"not null default '0' comment('审批步骤编码') VARCHAR(20)"`
  13. AuditStepName string `xorm:"comment('审批步骤名称') VARCHAR(50)"`
  14. Remark string `xorm:"comment('备注') VARCHAR(500)"`
  15. IsDelete int `xorm:"default 0 comment('删除状态,0正常,1已删除') INT(10)"`
  16. CreateOn time.Time `xorm:"DATETIME"`
  17. CreateUserId int `xorm:"INT(10)"`
  18. CreateBy string `xorm:"VARCHAR(50)"`
  19. ModifiedOn time.Time `xorm:"DATETIME"`
  20. ModifiedUserId int `xorm:"INT(10)"`
  21. ModifiedBy string `xorm:"VARCHAR(50)"`
  22. }