소스 검색

新增字段CommitComId

baichengfei 5 년 전
부모
커밋
5c01ebc5ca
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/dashoo.cn/backend/api/business/oilsupplier/suppliercertappend/oilsuppliercertappend.go

+ 2 - 1
src/dashoo.cn/backend/api/business/oilsupplier/suppliercertappend/oilsuppliercertappend.go

@@ -26,6 +26,7 @@ type OilSupplierCertAppend struct {
 	Remark         string    `xorm:"comment('备注') VARCHAR(500)"`
 	IsDelete       int       `xorm:"default 0 comment('删除状态,0正常,1已删除') INT(10)"`
 	Step           int       `xorm:"comment('页面上第几步') INT(10)"`
+	CommitComId    string    `xorm:"default '0' comment('提交二级单位Id') VARCHAR(50)"`
 	FirstAudit     int       `xorm:"default 0 comment('初审') INT(10)"`
 	SecondAudit    int       `xorm:"default 0 comment('复审') INT(10)"`
 	ThirdAudit     int       `xorm:"default 0 comment('专业科室审批') INT(10)"`
@@ -61,6 +62,7 @@ type Del_OilSupplierCertAppend struct {
 	Remark         string    `xorm:"comment('备注') VARCHAR(500)"`
 	IsDelete       int       `xorm:"default 0 comment('删除状态,0正常,1已删除') INT(10)"`
 	Step           int       `xorm:"comment('页面上第几步') INT(10)"`
+	CommitComId    string    `xorm:"default '0' comment('提交二级单位Id') VARCHAR(50)"`
 	FirstAudit     int       `xorm:"default 0 comment('初审') INT(10)"`
 	SecondAudit    int       `xorm:"default 0 comment('复审') INT(10)"`
 	ThirdAudit     int       `xorm:"default 0 comment('专业科室审批') INT(10)"`
@@ -75,7 +77,6 @@ type Del_OilSupplierCertAppend struct {
 	DeleteDate     time.Time `xorm:"DATETIME"`
 }
 
-
 type OilSupplierCertAppendTodo struct {
 	Id             int       `xorm:"not null pk autoincr INT(10)"`
 	SupplierName   string    `xorm:"VARCHAR(100)"`