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