cm_rule.go 503 B

12345678910
  1. package models
  2. type CmRule struct {
  3. Id int `xorm:"not null pk autoincr comment('自增id') INT(11)"`
  4. ProjectId int `xorm:"not null default 0 comment('项目ID') INT(11)"`
  5. BidsectionId int `xorm:"not null default 0 comment('标段ID') INT(11)"`
  6. SafeRule string `xorm:"comment('安全巡检编号规则') VARCHAR(255)"`
  7. QualityRule string `xorm:"comment('质量巡检编号规则') VARCHAR(255)"`
  8. ContractRule string `xorm:"comment('合同编号规则') VARCHAR(255)"`
  9. }