|
@@ -12,6 +12,7 @@ type CmSafeAudit struct {
|
|
AuditId int `xorm:"not null default 0 comment('审核人id') INT(11)"`
|
|
AuditId int `xorm:"not null default 0 comment('审核人id') INT(11)"`
|
|
AuditOrder int `xorm:"not null default 0 comment('审批顺序') INT(11)"`
|
|
AuditOrder int `xorm:"not null default 0 comment('审批顺序') INT(11)"`
|
|
Status int `xorm:"default 0 comment('审核状态') INT(11)"`
|
|
Status int `xorm:"default 0 comment('审核状态') INT(11)"`
|
|
|
|
+ Progress int `xorm:"not null default 0 comment('审批进度(0审批1整改2复查)') TINYINT(1)"`
|
|
CreateTime time.Time `xorm:"comment('开始时间') DATETIME"`
|
|
CreateTime time.Time `xorm:"comment('开始时间') DATETIME"`
|
|
EndTime time.Time `xorm:"comment('结束时间') DATETIME"`
|
|
EndTime time.Time `xorm:"comment('结束时间') DATETIME"`
|
|
Opinion string `xorm:"comment('审批意见') VARCHAR(1024)"`
|
|
Opinion string `xorm:"comment('审批意见') VARCHAR(1024)"`
|