caipin 4 years ago
parent
commit
356d214c6e
1 changed files with 18 additions and 0 deletions
  1. 18 0
      models/cm_rectification.go

+ 18 - 0
models/cm_rectification.go

@@ -0,0 +1,18 @@
+package models
+
+import (
+	"time"
+)
+
+type CmRectification struct {
+	Id            int       `xorm:"not null pk autoincr comment('自增ID') INT(11)"`
+	ProjectId     int       `xorm:"not null default 0 comment('项目ID') INT(11)"`
+	BidsectionId  int       `xorm:"not null default 0 comment('标段id') INT(11)"`
+	DataType      int       `xorm:"not null default 1 comment('数据类型(1安全2质量)') TINYINT(1)"`
+	DataId        int       `xorm:"comment('数据ID') INT(11)"`
+	Status        int       `xorm:"comment('状态(0未完成1完成)') TINYINT(1)"`
+	Content       string    `xorm:"comment('内容') VARCHAR(3072)"`
+	RectifiedTime time.Time `xorm:"comment('整改时间') DATETIME"`
+	CreateTime    time.Time `xorm:"comment('创建时间') DATETIME"`
+	UpdateTime    time.Time `xorm:"not null default 'CURRENT_TIMESTAMP' comment('更新时间') TIMESTAMP"`
+}