From d55d3fd1f5eccfad9008385e2095ea0a3cb7a36e Mon Sep 17 00:00:00 2001
From: shiyunteng <shiyunteng@example.com>
Date: 星期三, 02 四月 2025 14:33:03 +0800
Subject: [PATCH] 合同新增表单明细设备根据中标关联,设备技术协议根据设备关联
---
platformx-device-biz/src/main/java/com/by4cloud/platformx/device/mapper/DeviceMapper.java | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/platformx-device-biz/src/main/java/com/by4cloud/platformx/device/mapper/DeviceMapper.java b/platformx-device-biz/src/main/java/com/by4cloud/platformx/device/mapper/DeviceMapper.java
index 06b4439..5c06f67 100644
--- a/platformx-device-biz/src/main/java/com/by4cloud/platformx/device/mapper/DeviceMapper.java
+++ b/platformx-device-biz/src/main/java/com/by4cloud/platformx/device/mapper/DeviceMapper.java
@@ -3,9 +3,17 @@
import com.by4cloud.platformx.common.data.datascope.PlatformxBaseMapper;
import com.by4cloud.platformx.device.entity.Device;
import org.apache.ibatis.annotations.Mapper;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
@Mapper
public interface DeviceMapper extends PlatformxBaseMapper<Device> {
+ List<Device> getDeviceSelectListByLedgerId(@Param("ledgerId") Long ledgerId);
+
+ List<Device> getDeviceListByContractId(@Param("contractId")Long contractId);
+
+ List<Device> getDropdownnByWinningId(@Param("id") Long id);
}
--
Gitblit v1.9.1