修改bug

This commit is contained in:
yangjun 2026-03-03 11:14:54 +08:00
parent cb3ee0a260
commit 26a1435058
1 changed files with 3 additions and 2 deletions

View File

@ -41,8 +41,9 @@ public class InvoicingThdApi {
public Result<IPage<InvoicingThdMainEntity>> thdList(InvoicingThdMainEntity dto,
@RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
@RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize) {
IPage<InvoicingThdMainEntity> pageList = tuiHuoApi.thdList(pageNo, pageSize, dto);
return Result.OK(pageList);
// IPage<InvoicingThdMainEntity> pageList = tuiHuoApi.thdList(pageNo, pageSize, dto);
return Result.OK(null);
}
/**