caipin 4 years ago
parent
commit
67e265233f
1 changed files with 12 additions and 0 deletions
  1. 12 0
      models/cm_approver.go

+ 12 - 0
models/cm_approver.go

@@ -0,0 +1,12 @@
+package models
+
+type CmApprover struct {
+	Id           int    `xorm:"not null pk autoincr comment('自增ID') INT(11)"`
+	ProjectId    int    `xorm:"comment('项目ID') INT(11)"`
+	BidsectionId int    `xorm:"comment('标段id') INT(11)"`
+	DataType     int    `xorm:"not null default 1 comment('数据类型(1安全2质量)') TINYINT(1)"`
+	DataId       int    `xorm:"comment('数据ID') INT(11)"`
+	Times        int    `xorm:"comment('审批次数') INT(11)"`
+	AuditOrder   string `xorm:"comment('审批顺序') VARCHAR(3072)"`
+	AuditId      string `xorm:"comment('审核人id') VARCHAR(3072)"`
+}