cm_approver.go 694 B

12345678910111213
  1. package models
  2. type CmApprover struct {
  3. Id int `xorm:"not null pk autoincr comment('自增ID') INT(11)"`
  4. ProjectId int `xorm:"comment('项目ID') INT(11)"`
  5. BidsectionId int `xorm:"comment('标段id') INT(11)"`
  6. DataType int `xorm:"not null default 1 comment('数据类型(1安全2质量)') TINYINT(1)"`
  7. DataId int `xorm:"comment('数据ID') INT(11)"`
  8. Status int `xorm:"comment('状态(0未上报1待审批2完成3关闭)') TINYINT(1)"`
  9. Progress int `xorm:"not null default 0 comment('审批进度(0审批1整改2复查)') TINYINT(1)"`
  10. AuditOrder int `xorm:"comment('审批顺序') INT(11)"`
  11. AuditId int `xorm:"comment('审核人id') INT(11)"`
  12. }