package viewmodel // Role Member Info View data models type GroupMemberInfo struct { OcId int64 `json:"ocId" xorm:"'oc_id' bigint not null pk comment('公司组织ID') " ` GmId int64 `json:"gmId" xorm:"'gm_id' bigint not null pk comment('PK ID') " ` GroupId int64 `json:"groupId" xorm:"'group_id' bigint not null comment('群组ID') " ` GroupName string `json:"groupName" xorm:"'group_name' string not null comment('群组名称') " ` NodeLeft int64 `json:"nodeLeft" xorm:"'node_left' bigint not null comment('群组LEFT') " ` NodeRight int64 `json:"nodeRight" xorm:"'node_right' bigint not null comment('群组RIGHT') " ` AccountId int64 `json:"accountId" xorm:"'account_id' bigint not null comment('帐号ID') " ` IsFixed int64 `json:"isFixed" xorm:"'is_fixed' bigint comment('是否可修改') "` }