cm_permission_account.go 592 B

1234567891011
  1. package models
  2. type CmPermissionAccount 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:"comment('标段ID') INT(11)"`
  6. AccountId int `xorm:"not null default 0 comment('账号ID') INT(11)"`
  7. ContractPermission string `xorm:"comment('合同权限(json)') TEXT"`
  8. QualityPermission string `xorm:"comment('质量巡检权限(json)') TEXT"`
  9. SafePermission string `xorm:"comment('安全巡检权限(json)') TEXT"`
  10. }