cm_project.go 1.9 KB

123456789101112131415161718192021222324252627282930
  1. package models
  2. type CmProject struct {
  3. Id int `xorm:"not null pk autoincr comment('自增ID') INT(11)"`
  4. Code string `xorm:"comment('项目编号') VARCHAR(32)"`
  5. EnterpriseId int `xorm:"comment('企业id') INT(11)"`
  6. UserId int `xorm:"comment('管理员id(sso用户)') INT(11)"`
  7. UserAccount string `xorm:"comment('管理员名字(sso用户名)') VARCHAR(32)"`
  8. CreateTime int `xorm:"comment('创建时间') INT(11)"`
  9. MaxUser int `xorm:"comment('最大创建用户数(删除)') TINYINT(4)"`
  10. Name string `xorm:"comment('项目名称') VARCHAR(128)"`
  11. Creator int64 `xorm:"comment('创建者') BIGINT(20)"`
  12. Status int `xorm:"comment('项目状态') TINYINT(1)"`
  13. Remark string `xorm:"comment('备注') VARCHAR(128)"`
  14. ManagerId int `xorm:"comment('销售负责人') INT(11)"`
  15. ManagerOffice int `xorm:"comment('负责人办事处') TINYINT(4)"`
  16. Office int `xorm:"comment('办事处id(项目所属)') TINYINT(4)"`
  17. OfficeShare string `xorm:"comment('办事处共享(office id列表') VARCHAR(1024)"`
  18. BillId string `xorm:"comment('工程量清单id列表') VARCHAR(128)"`
  19. ChapterId string `xorm:"comment('项目节清单id列表') VARCHAR(128)"`
  20. StandardId int `xorm:"comment('标准清单id') TINYINT(4)"`
  21. Valuation string `xorm:"comment('清单规范id列表(删除)') VARCHAR(128)"`
  22. QrcodeJson string `xorm:"comment('项目二维码信息') TEXT"`
  23. DealpayJson string `xorm:"TEXT"`
  24. Custom int `xorm:"comment('是否是定制项目') TINYINT(1)"`
  25. CanApi int `xorm:"comment('定制项目接口是否可用') TINYINT(1)"`
  26. Secret string `xorm:"comment('定制项目私钥') VARCHAR(255)"`
  27. PageShow string `xorm:"comment('前台页面或功能展示与隐藏') VARCHAR(3072)"`
  28. PagePath string `xorm:"VARCHAR(11)"`
  29. }