From 4ad9053cc576b74f74985f22fa5af25cca282a28 Mon Sep 17 00:00:00 2001 From: shiyunteng <shiyunteng@example.com> Date: 星期五, 28 三月 2025 14:32:56 +0800 Subject: [PATCH] 合同审批 验收和台账中下拉 招标 中标编号后台生成 流水列表接口 --- platformx-device-biz/src/main/java/com/by4cloud/platformx/device/mapper/InventoryFlowWaterMapper.java | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/platformx-device-biz/src/main/java/com/by4cloud/platformx/device/mapper/InventoryFlowWaterMapper.java b/platformx-device-biz/src/main/java/com/by4cloud/platformx/device/mapper/InventoryFlowWaterMapper.java index baae039..bf7e638 100644 --- a/platformx-device-biz/src/main/java/com/by4cloud/platformx/device/mapper/InventoryFlowWaterMapper.java +++ b/platformx-device-biz/src/main/java/com/by4cloud/platformx/device/mapper/InventoryFlowWaterMapper.java @@ -1,11 +1,16 @@ package com.by4cloud.platformx.device.mapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.by4cloud.platformx.common.data.datascope.PlatformxBaseMapper; +import com.by4cloud.platformx.device.dto.InventoryFlowWaterQueryDTO; import com.by4cloud.platformx.device.entity.InventoryFlowWater; +import com.by4cloud.platformx.device.entity.vo.InventoryFlowWaterPageVo; import org.apache.ibatis.annotations.Mapper; @Mapper public interface InventoryFlowWaterMapper extends PlatformxBaseMapper<InventoryFlowWater> { + IPage<InventoryFlowWaterPageVo> pageNew(Page page, InventoryFlowWaterQueryDTO queryDTO); } -- Gitblit v1.9.1