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