caipin 4 年之前
父节点
当前提交
fc03ac219e
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      models/cm_approver.go

+ 1 - 0
models/cm_approver.go

@@ -7,6 +7,7 @@ type CmApprover struct {
 	DataType     int    `xorm:"not null default 1 comment('数据类型(1安全2质量)') TINYINT(1)"`
 	DataId       int    `xorm:"comment('数据ID') INT(11)"`
 	Status       int    `xorm:"comment('状态(0未上报1待审批2完成3关闭)') TINYINT(1)"`
+	Progress     int    `xorm:"not null default 0 comment('审批进度(0审批1整改2复查)') TINYINT(1)"`
 	Times        int    `xorm:"comment('审批次数') INT(11)"`
 	AuditOrder   string `xorm:"comment('审批顺序') VARCHAR(3072)"`
 	AuditId      string `xorm:"comment('审核人id') VARCHAR(3072)"`