|
|
@@ -35,6 +35,37 @@ type OilQualChangeDetail struct {
|
|
|
ModifiedBy string `xorm:"VARCHAR(50)"`
|
|
|
}
|
|
|
|
|
|
+type OilQualChangeDetail1 struct {
|
|
|
+ Id int `xorm:"not null default 0 INT(10)"`
|
|
|
+ SupplierId int `xorm:"INT(10)"`
|
|
|
+ SupplierCertId int `xorm:"not null comment('准入子表Id') INT(10)"`
|
|
|
+ FileId int `xorm:"not null comment('资质文件Id') INT(10)"`
|
|
|
+ ParentId int `xorm:"not null default 0 comment('主表Id') INT(10)"`
|
|
|
+ SupplierTypeCode string `xorm:"not null default '0' comment('准入类别代码(01 物资类,02 基建类,03 技术服务类)') VARCHAR(5)"`
|
|
|
+ SupplierCertSubId int `xorm:"not null default 0 comment('供方对应准入子分类表') INT(10)"`
|
|
|
+ CertSubName string `xorm:"default '' comment('分类名称') VARCHAR(50)"`
|
|
|
+ NeedFileType string `xorm:"not null default '' comment('文件分类') VARCHAR(50)"`
|
|
|
+ NeedFileCode string `xorm:"not null default '' comment('文件分类编码') VARCHAR(20)"`
|
|
|
+ OldFileName string `xorm:"not null default '' comment('原文件名称') VARCHAR(2000)"`
|
|
|
+ FileName string `xorm:"not null default '' comment('文件名称') VARCHAR(2000)"`
|
|
|
+ FileExt string `xorm:"VARCHAR(10)"`
|
|
|
+ FileType int `xorm:"default 0 comment('0:不必要文件;1:必上传文件;') INT(10)"`
|
|
|
+ OldEffectDate time.Time `xorm:"comment('原有效期') DATETIME"`
|
|
|
+ EffectDate time.Time `xorm:"comment('有效期') DATETIME"`
|
|
|
+ OldFileUrl string `xorm:"VARCHAR(2000)"`
|
|
|
+ FileUrl string `xorm:"VARCHAR(2000)"`
|
|
|
+ OtherRemark string `xorm:"VARCHAR(500)"`
|
|
|
+ Remark string `xorm:"comment('备注') VARCHAR(500)"`
|
|
|
+ Remark1 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 OilQualChangeMain struct {
|
|
|
Id int `xorm:"not null pk autoincr INT(10)"`
|
|
|
SupplierId int `xorm:"not null comment('供方基本信息表主键') INT(10)"`
|