package viewmodel type GroupMemberPositionInfo struct { OcId int64 `form:"ocId" xorm:"'oc_id' bigint not null pk comment('公司组织ID') " ` GmpId int64 `form:"gmpId" xorm:"'gmp_id' bigint not null pk comment('公司组织ID') " ` GroupId int64 `form:"groupId" xorm:"'group_id' bigint not null comment('群组ID') " ` GroupName string `form:"groupName" xorm:"'group_name' string not null comment('群组名称') " ` AccountId int64 `form:"accountId" xorm:"'account_id' bigint not null comment('帐号ID') " ` AccountName string `form:"accountName" xorm:"'account_name' string not null comment('岗位名称') " ` PositionId int64 `form:"positionId" xorm:"'account_id' bigint not null comment('岗位ID') " ` PositionName string `form:"positionName" xorm:"'position_name' string not null comment('岗位名称') " ` }