pad接口-请领单-请领单查询:去除NUID、长者id必传(兼容库管界面)

This commit is contained in:
1378012178@qq.com 2025-12-09 09:16:55 +08:00
parent d048349afa
commit 61f865f0c8
1 changed files with 3 additions and 3 deletions

View File

@ -237,9 +237,9 @@ public class InvoicingQldApi {
public Result<IPage<InvoicingQldMainEntity>> queryQld(InvoicingQldQueryEntity queryDto,
@RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
@RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize) {
if (StringUtils.isBlank(queryDto.getNuId()) || StringUtils.isBlank(queryDto.getElderId())) {
return Result.error("缺少参数");
}
// if (StringUtils.isBlank(queryDto.getNuId()) || StringUtils.isBlank(queryDto.getElderId())) {
// return Result.error("缺少参数");
// }
return Result.OK(qinglingApi.queryQld(queryDto, pageNo, pageSize));
}