|
|
@@ -209,7 +209,7 @@ type OilSupplierView struct {
|
|
|
}
|
|
|
|
|
|
type OilSupplierSelect struct {
|
|
|
- Id int //Oilsupplier表id
|
|
|
+ Id int //Oilsupplier表id
|
|
|
CertId int
|
|
|
AccessCardNo string //准入证号
|
|
|
SupplierName string //企业名称
|
|
|
@@ -345,7 +345,7 @@ type InterfaceData struct {
|
|
|
ExpireAllFile string
|
|
|
}
|
|
|
|
|
|
-type OilSupplierAndApply struct {
|
|
|
+type SupplierInfoInte struct {
|
|
|
Id int `xorm:"not null pk autoincr INT(10)"`
|
|
|
SupplierName string `xorm:"comment('企业名称') VARCHAR(255)"`
|
|
|
OilCertificateNo string `xorm:"comment('中石油供应商证书号') VARCHAR(50)"`
|
|
|
@@ -410,15 +410,20 @@ type OilSupplierAndApply struct {
|
|
|
JSAccessCardNo string `xorm:"comment('准入证编码--基建') VARCHAR(20)"`
|
|
|
JFAccessCardNo string `xorm:"comment('准入证编码--技术服务类') VARCHAR(20)"`
|
|
|
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)"`
|
|
|
PACNumber string `xorm:"comment('中石油准入证编号') VARCHAR(50)"`
|
|
|
SupplierCertificate string `xorm:"comment('中石油物资供应商证书') VARCHAR(200)"`
|
|
|
- Name string `xorm:"comment('准入范围') VARCHAR(500)"`
|
|
|
- Code string `xorm:"comment('准入范围编号') VARCHAR(15)"`
|
|
|
-}
|
|
|
+}
|
|
|
+
|
|
|
+type OilSupplierCertSubInte struct {
|
|
|
+ SupplierTypeCode string `xorm:"not null default '' comment('准入类别代码') VARCHAR(5)"`
|
|
|
+ Code string `xorm:"not null default '' comment('分类编码') VARCHAR(8)"`
|
|
|
+ Name string `xorm:"not null default '' comment('分类名称') VARCHAR(50)"`
|
|
|
+ Remark string `xorm:"comment('备注') VARCHAR(500)"`
|
|
|
+}
|
|
|
+
|
|
|
+type OilSupplierInte struct {
|
|
|
+ SupplierInfo SupplierInfoInte
|
|
|
+ WZsub []OilSupplierCertSubInte // 物资类
|
|
|
+ JFsub []OilSupplierCertSubInte // 技术服务类
|
|
|
+ JSsub []OilSupplierCertSubInte // 基建类
|
|
|
+}
|