cm_safe_audit.go 984 B

12345678910111213141516171819
  1. package models
  2. import (
  3. "time"
  4. )
  5. type CmSafeAudit struct {
  6. Id int `xorm:"not null pk autoincr comment('自增id') INT(11)"`
  7. SafeId int `xorm:"not null default 0 comment('安全巡检id') INT(11)"`
  8. BidsectionId int `xorm:"not null default 0 comment('标段id') INT(11)"`
  9. Times int `xorm:"not null default 0 comment('审核次数') INT(11)"`
  10. AuditId int `xorm:"not null default 0 comment('审核人id') INT(11)"`
  11. AuditOrder int `xorm:"not null default 0 comment('审批顺序') INT(11)"`
  12. Status int `xorm:"default 0 comment('审核状态(0待审批1通过2退回3关闭)') INT(11)"`
  13. Progress int `xorm:"not null default 0 comment('审批进度(0审批1整改2复查)') TINYINT(1)"`
  14. CreateTime time.Time `xorm:"comment('开始时间') DATETIME"`
  15. EndTime time.Time `xorm:"comment('结束时间') DATETIME"`
  16. Opinion string `xorm:"comment('审批意见') VARCHAR(1024)"`
  17. }