group_member_position_info.go 956 B

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