| 123456789101112131415161718192021222324 |
- package oilclassorgsetting
- import (
- "time"
- )
- type OilClassOrgSetting struct {
- Id int `xorm:"not null pk autoincr INT(10)"`
- ClassId int `xorm:"not null default 0 comment('分类编码ID') INT(11)"`
- OrganizeId int `xorm:"not null default 0 comment('单位ID') INT(10)"`
- OrganizeName string `xorm:"comment('单位名称') VARCHAR(100)"`
- SupplierTypeCode string `xorm:"comment('准入类别代码(1 物资类,2 基建类,3 技术服务类)') VARCHAR(20)"`
- SupplierTypeName string `xorm:"comment('准入类别名称(1 物资类,2 基建类,3 技术服务类)') VARCHAR(20)"`
- AuditStepCode string `xorm:"not null default '0' comment('审批步骤编码') VARCHAR(20)"`
- AuditStepName string `xorm:"comment('审批步骤名称') VARCHAR(50)"`
- Remark string `xorm:"comment('备注') VARCHAR(500)"`
- IsDelete int `xorm:"default 0 comment('删除状态,0正常,1已删除') 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)"`
- }
|