group_member_position_grant.go 887 B

1234567891011121314
  1. package datamodel
  2. type GroupMemberPositionGrant struct {
  3. OcId int64 `json:"ocId" xorm:"bigint 'oc_id' pk not null comment('组织ID:公司或机构或单位ID')"`
  4. GmpgId int64 `json:"gmpgid" xorm:"bigint 'gmpg_id' pk not null comment('主键ID') "`
  5. GroupId int64 `json:"groupId" xorm:"bigint 'group_id' not null comment('群组ID') "`
  6. AccountId int64 `json:"accountId" xorm:"bigint 'account_id' not null comment('帐号ID') "`
  7. PositionId int64 `json:"positionId" xorm:"bigint 'position_id' not null comment('岗位ID') "`
  8. GrantGroupId int64 `json:"grantGroupId" xorm:"bigint 'grant_group_id' not null comment('授权群组ID') "`
  9. }
  10. func (t *GroupMemberPositionGrant) TableName() string {
  11. return "s_group_member_position_grant"
  12. }