group_member_info.go 965 B

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