cm_valuation_list.go 1.0 KB

12345678910111213
  1. package models
  2. type CmValuationList struct {
  3. Id int `xorm:"not null pk autoincr comment('自增ID') INT(11)"`
  4. Name string `xorm:"not null comment('名称') VARCHAR(255)"`
  5. BillId string `xorm:"not null comment('(0号台账模式)zh_bill_list id列表,逗号分隔') VARCHAR(255)"`
  6. TemplateId string `xorm:"not null comment('(0号台账模式)zh_bills_template_list id列表,逗号分隔') VARCHAR(255)"`
  7. ChapterId string `xorm:"not null comment('(0号台账模式)zh_project_chapter_list id列表,逗号分隔') VARCHAR(255)"`
  8. ListBillId string `xorm:"not null comment('(工程量清单模式)zh_bill_list id列表,逗号分隔') VARCHAR(255)"`
  9. ListTemplateId string `xorm:"not null comment('(工程量清单模式)zh_bills_template_list id列表,逗号分隔') VARCHAR(255)"`
  10. ListChapterId string `xorm:"not null comment('(工程量清单模式)zh_project_chapter_list id列表,逗号分隔') VARCHAR(255)"`
  11. CreateTime int `xorm:"not null comment('创建时间') INT(11)"`
  12. }