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

+ 0 - 1
models/cm_approver.go

@@ -8,7 +8,6 @@ type CmApprover struct {
 	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   int `xorm:"comment('审批顺序') INT(11)"`
 	AuditId      int `xorm:"comment('审核人id') INT(11)"`
 }

+ 1 - 1
models/cm_safe_audit.go

@@ -11,7 +11,7 @@ type CmSafeAudit struct {
 	Times         int       `xorm:"not null default 1 comment('审核次数') INT(11)"`
 	AuditId       int       `xorm:"not null default 0 comment('审核人id') INT(11)"`
 	AuditOrder    int       `xorm:"not null default 0 comment('审批顺序') INT(11)"`
-	Status        int       `xorm:"default 0 comment('状态(0未上报1待审批2通过3退回4关闭)') INT(11)"`
+	Status        int       `xorm:"default 0 comment('状态(0通过1退回2关闭)') INT(11)"`
 	Progress      int       `xorm:"not null default 0 comment('审批进度(0上报人1审批2整改3复查)') TINYINT(1)"`
 	CreateTime    time.Time `xorm:"comment('开始时间') DATETIME"`
 	EndTime       time.Time `xorm:"comment('结束时间') DATETIME"`