|
|
@@ -17,7 +17,7 @@ type OilContractReview struct {
|
|
|
CommitComId string `xorm:"default '0' comment('提交二级单位Id') VARCHAR(50)"`
|
|
|
ProfessionalAudit int `json:"ProfessionalAudit" xorm:"comment('业务处室专业审批人id') INT(11) 'ProfessionalAudit'"`
|
|
|
AuditIndex int `json:"AuditIndex" xorm:"default 0 comment('审批次数') INT(11) 'AuditIndex'"`
|
|
|
- IsFinal string `json:"IsFinal" xorm:"comment('是否最终评价(履行完成) 0否1是') INT(11) 'IsFinal'"`
|
|
|
+ IsFinal int `json:"IsFinal" xorm:"comment('是否最终评价(履行完成) 0否1是') INT(11) 'IsFinal'"`
|
|
|
CreateOn time.Time `json:"CreateOn" xorm:"DATETIME 'CreateOn'"`
|
|
|
CreateUserId int `json:"CreateUserId" xorm:"INT(11) 'CreateUserId'"`
|
|
|
CreateBy string `json:"CreateBy" xorm:"VARCHAR(50) 'CreateBy'"`
|
|
|
@@ -48,9 +48,22 @@ type OilContractReviewListVo struct {
|
|
|
ModifiedUserId int `json:"ModifiedUserId"`
|
|
|
ModifiedBy string `json:"ModifiedBy"`
|
|
|
|
|
|
- SupplierName string `json:"SupplierName"` // 供应商名称
|
|
|
- ProjectName string `json:"ProjectName"` // 项目名称
|
|
|
- ContractNo string `json:"ContractNo"` // 合同编号
|
|
|
+ SupplierName string `json:"SupplierName"` // 供应商名称
|
|
|
+ ProjectName string `json:"ProjectName"` // 项目名称
|
|
|
+ ContractNo string `json:"ContractNo"` // 合同编号
|
|
|
+ SupplierId int `json:"SupplierId"`
|
|
|
+ ProjectPlace string `json:"ProjectPlace"`
|
|
|
+ ProjectOwner string `json:"ProjectOwner"`
|
|
|
+ Telephone string `json:"Telephone"`
|
|
|
+ ProjectType string `json:"ProjectType"`
|
|
|
+ ContractClass string `json:"ContractClass"`
|
|
|
+ ContractMode string `json:"ContractMode"`
|
|
|
+ Amount string `json:"Amount"`
|
|
|
+ ContractPeriod string `json:"ContractPeriod"`
|
|
|
+ OpenDate time.Time `json:"OpenDate"`
|
|
|
+ PlanFinishDate time.Time `json:"PlanFinishDate"`
|
|
|
+ SettleStatus string `json:"SettleStatus"`
|
|
|
+ Remark string `json:"Remark"`
|
|
|
}
|
|
|
type OilContractReviewVo struct {
|
|
|
Items []*OilContractEvaluationItemsVo
|