|
@@ -92,39 +92,47 @@ type ChatGroupListReq struct {
|
|
|
EntId int64 `header:"entId,optional"`
|
|
|
UserName string `json:"userName"`
|
|
|
GroupName string `json:"groupName"`
|
|
|
- PositionId string `header:"positionId,optional"`
|
|
|
+ PositionId int64 `header:"positionId,optional"`
|
|
|
+ Appid string `header:"appId"`
|
|
|
}
|
|
|
|
|
|
type ChatGroupAddReq struct {
|
|
|
EntId int64 `header:"entId,optional"`
|
|
|
PositionId int64 `header:"positionId,optional"`
|
|
|
UserIdArr []string `json:"userIdArr"`
|
|
|
+ Appid string `header:"appId"`
|
|
|
}
|
|
|
|
|
|
type ChatGroupPersonReq struct {
|
|
|
ChatGroupId string `json:"chatGroupId"`
|
|
|
EntId int64 `header:"entId,optional"`
|
|
|
+ Appid string `header:"appId"`
|
|
|
}
|
|
|
|
|
|
type ChatGroupJoinReq struct {
|
|
|
- ChatGroupId string `json:"chatGroupId"`
|
|
|
- PositionId string `json:"positionId"`
|
|
|
+ ChatGroupId string `json:"chatGroupId"`
|
|
|
+ PositionId int64 `json:"positionId"`
|
|
|
+ Appid string `header:"appId"`
|
|
|
+ UserIdArr []string `json:"userIdArr"`
|
|
|
}
|
|
|
|
|
|
type GroupNameUpdateReq struct {
|
|
|
ChatGroupId string `json:"chatGroupId"`
|
|
|
- PositionId string `header:"positionId,optional"`
|
|
|
+ PositionId int64 `header:"positionId,optional"`
|
|
|
GroupName string `json:"groupName"`
|
|
|
+ Appid string `header:"appId"`
|
|
|
}
|
|
|
|
|
|
type GroupNoticeAddReq struct {
|
|
|
ChatGroupId string `json:"chatGroupId"`
|
|
|
Content string `json:"content"`
|
|
|
+ Appid string `header:"appId"`
|
|
|
}
|
|
|
|
|
|
type GroupNoticeUpdateReq struct {
|
|
|
Content string `json:"content"`
|
|
|
GroupNoticeId string `json:"groupNoticeId"`
|
|
|
+ Appid string `header:"appId"`
|
|
|
}
|
|
|
|
|
|
type ReadWithdrawReq struct {
|
|
@@ -141,4 +149,5 @@ type AppraiseMessageReq struct {
|
|
|
NewUserId int64 `header:"newUserId"`
|
|
|
MessageId string `json:"messageId"`
|
|
|
Appraise int64 `json:"appraise,options=-1|1"`
|
|
|
+ Appid string `header:"appId"`
|
|
|
}
|