|
@@ -850,10 +850,13 @@ public class NoCarInterServiceImpl implements NoCarInterService {
|
|
|
JSONObject jsonObject = JSONObject.parseObject(data);
|
|
|
String taxplayerCode = jsonObject.getString("taxplayerCode");//企业税号 必输
|
|
|
String month = jsonObject.getString("month");//开票月份 样例:yyyy-MM 必输
|
|
|
+ Integer pageNo = jsonObject.getInteger("pageNo");//查询第几页 示例1,2,3,4…
|
|
|
+
|
|
|
+
|
|
|
if(StringUtils.isEmpty(data)|| null == jsonObject){
|
|
|
return result;
|
|
|
}
|
|
|
- if(StringUtils.isEmpty(taxplayerCode) || StringUtils.isEmpty(month)){
|
|
|
+ if(StringUtils.isEmpty(taxplayerCode) || StringUtils.isEmpty(month) || null == pageNo){
|
|
|
return result;
|
|
|
}
|
|
|
|