caipin 4 năm trước cách đây
mục cha
commit
50e76635bc
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      models/cm_approver.go

+ 1 - 1
models/cm_approver.go

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