Commit 3333947e by 徐高华

画布

parent ac13efc6
......@@ -102,6 +102,13 @@ public class GroupChatPlanController {
qdto.setSearchParams(qo.getChatName());
qdto.setStatus(0);
qdto.setGicFlag(1);
if(null != qo.getOwnLogId()) {
ServiceResponse<GroupChatPlanOwnerLogDTO> resp = this.groupChatPlanApiService.getOwnerSendInfo(qo.getOwnLogId());
GroupChatPlanOwnerLogDTO owner = resp.getResult();
if (null != owner && owner.getSendStatus()==2) {
return RestResponse.successResult(new Page<>()) ;
}
}
ServiceResponse<Page<GroupChatDTO>> page = this.groupChatApiService.listPage(qdto, qo);
return RestResponse.successResult(page.getResult());
}
......
......@@ -13,6 +13,15 @@ public class GroupChatQO extends BasePageInfo implements Serializable {
private String enterpriseId ;
private String wxEnterpriseId ;
private String staffId ;
private Long ownLogId ;
public Long getOwnLogId() {
return ownLogId;
}
public void setOwnLogId(Long ownLogId) {
this.ownLogId = ownLogId;
}
public String getChatName() {
return chatName;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment