|
|
@@ -8,6 +8,7 @@ type OilContractSumScore struct {
|
|
|
Id int `json:"Id" xorm:"not null pk autoincr comment('ID') INT(11) 'Id'"`
|
|
|
SupplierId int `json:"SupplierId" xorm:"default 0 comment('供应商ID') INT(11) 'SupplierId'"`
|
|
|
SupplierName string `json:"SupplierName" xorm:"comment('企业名称') VARCHAR(255) 'SupplierName'"`
|
|
|
+ ContractClass string `json:"ContractClass" xorm:"comment('合同类别') VARCHAR(255) 'ContractClass'"`
|
|
|
ContractId int `json:"ContractId" xorm:"not null default 0 comment('合同表ID') INT(11) 'ContractId'"`
|
|
|
Category int `json:"Category" xorm:"not null default 0 comment('0二级单位创建1专业处创建') INT(11) 'Category'"`
|
|
|
SumScore float64 `json:"SumScore" xorm:"default 0.00 comment('实际分值') DECIMAL(11,2) 'SumScore'"`
|
|
|
@@ -51,6 +52,7 @@ type OilContractSumScore struct {
|
|
|
type OilContractComputeSumScoreVo struct {
|
|
|
SupplierId int `json:"SupplierId"`
|
|
|
SupplierName string `json:"SupplierName"`
|
|
|
+ ContractClass string `json:"ContractClass"`
|
|
|
Score string `json:"Score"`
|
|
|
Score1 string `json:"Score1"`
|
|
|
Score2 string `json:"Score2"`
|