cm_rule.go 630 B

1234567891011
  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. ContractReturnRule string `xorm:"comment('合同收入编号规则') VARCHAR(255)"`
  9. ContractPaidRule string `xorm:"comment('合同支出编号规则') VARCHAR(255)"`
  10. }