| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package suppliercertappendsub
- import (
- "time"
- )
- type OilSupplierCertAppendSub struct {
- Id int `xorm:"not null pk autoincr INT(10)"`
- SupplierId int `xorm:"not null comment('供方基本信息表主键') INT(10)"`
- SupplierCertId int `xorm:"not null comment('供方准入证书信息表主键') INT(10)"`
- SupplierCertAppendId int `xorm:"not null comment('增项信息表ID') INT(10)"`
- SubClassId int `xorm:"not null comment('分类表主键(物资类或基建类或技术服务类)') INT(10)"`
- SupplierTypeCode string `xorm:"not null default '' comment('分类标记') VARCHAR(10)"`
- SortFlag string `xorm:"not null default '' comment('分类标记') VARCHAR(100)"`
- Code string `xorm:"not null default '' comment('分类编码') VARCHAR(50)"`
- Name string `xorm:"not null default '' 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)"`
- }
- type OilSub struct {
- Id int `xorm:"not null pk autoincr INT(10)"`
- SupplierId int `xorm:"not null comment('供方基本信息表主键') INT(10)"`
- SupplierCertId int `xorm:"not null comment('供方准入证书信息表主键') INT(10)"`
- //SupplierCertAppendId int `xorm:"not null comment('增项信息表ID') INT(10)"`
- SupplierTypeCode string `xorm:"not null default '' comment('准入类别代码') VARCHAR(5)"`
- SubClassId int `xorm:"not null comment('分类表主键(物资类或基建类或技术服务类)') INT(10)"`
- //SortFlag string `xorm:"not null default '' comment('分类标记') VARCHAR(100)"`
- Code string `xorm:"not null default '' comment('分类编码') VARCHAR(50)"`
- Name string `xorm:"not null default '' 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)"`
- }
|