|
|
@@ -4,7 +4,6 @@ import (
|
|
|
"time"
|
|
|
)
|
|
|
|
|
|
-
|
|
|
type OilSupplier struct {
|
|
|
Id int `xorm:"not null pk autoincr INT(10)"`
|
|
|
SupplierName string `xorm:"comment('企业名称') VARCHAR(255)"`
|
|
|
@@ -133,7 +132,7 @@ type OilSupplierView struct {
|
|
|
}
|
|
|
|
|
|
type OilSupplierSelect struct {
|
|
|
- Id int //Oilsupplier表id
|
|
|
+ Id int //Oilsupplier表id
|
|
|
AccessCardNo string //准入证号
|
|
|
SupplierName string //企业名称
|
|
|
OldSupplierName string //企业曾用名
|
|
|
@@ -161,7 +160,7 @@ type OilSupplierSelect struct {
|
|
|
BusinessScope string //营业范围
|
|
|
NeedFileType string //资质
|
|
|
CerSubName string //准入范围
|
|
|
- InStyle string //准入方式
|
|
|
+ InStyle string //准入方式
|
|
|
}
|
|
|
|
|
|
//type NeedFileTypeStruct struct {
|
|
|
@@ -245,6 +244,16 @@ type OilSupplierApply struct {
|
|
|
ModifiedBy string `xorm:"VARCHAR(50)"`
|
|
|
PACNumber string `xorm:"comment('中石油准入证编号') VARCHAR(50)"`
|
|
|
SupplierCertificate string `xorm:"comment('中石油物资供应商证书') VARCHAR(200)"`
|
|
|
- InFlag string `xorm:"default '0' comment('准入标识') VARCHAR(10)"`
|
|
|
- Status string `xorm:"not null default '0' comment('状态标识(0未申请,1办理完毕)') VARCHAR(10)"`
|
|
|
-}
|
|
|
+ InFlag string `xorm:"default '0' comment('准入标识') VARCHAR(10)"`
|
|
|
+ Status string `xorm:"not null default '0' comment('状态标识(0未申请,1办理完毕)') VARCHAR(10)"`
|
|
|
+}
|
|
|
+
|
|
|
+type ExpireFile struct {
|
|
|
+ Id int
|
|
|
+ SupplierName string
|
|
|
+ Mobile string
|
|
|
+ ExpireAllFile string
|
|
|
+ CreateBy string
|
|
|
+ ContactName string
|
|
|
+ CreateUserId int
|
|
|
+}
|