Commit ac09155a by jinxin

自建应用无需弹窗

parent a6758082
......@@ -287,6 +287,12 @@ public class AppOrderApiServiceImpl implements AppOrderApiService {
public ServiceResponse<AppOrderNoticeDTO> noticeAppOrder(String wxEnterpriseId) {
AppOrderPageQDTO qdto = new AppOrderPageQDTO();
AppOrderNoticeDTO result = new AppOrderNoticeDTO();
WxEnterpriseDTO wxEnterpriseDTO = wxEnterpriseService.selectById(wxEnterpriseId);
if (wxEnterpriseDTO != null && wxEnterpriseDTO.getWxSecurityType() == 5){
//自建应用不需要弹窗
result.setType(0);
return ServiceResponse.success(result);
}
qdto.setWxEnterpriseId(wxEnterpriseId);
qdto.setPageNum(1);
qdto.setPageSize(Integer.MAX_VALUE);
......
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