From 99f3bd0aef6cec3e29876e3e1683c3f021e01606 Mon Sep 17 00:00:00 2001
From: Fancy <Fancy.fx@outlook.com>
Date: 星期四, 25 七月 2024 09:45:12 +0800
Subject: [PATCH] add quality OK Status
---
pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoPlt/PltStationMapper.java | 16 ++++++++++------
1 files changed, 10 insertions(+), 6 deletions(-)
diff --git a/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoPlt/PltStationMapper.java b/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoPlt/PltStationMapper.java
index 4e28a65..a28094c 100644
--- a/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoPlt/PltStationMapper.java
+++ b/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoPlt/PltStationMapper.java
@@ -15,10 +15,6 @@
@Mapper
public interface PltStationMapper {
- int deleteByPrimaryKey(Long id);
-
- int insert(PltStation record);
-
int insertSelective(PltStation record);
PltStation selectByPrimaryKey(Long id);
@@ -27,12 +23,20 @@
int updateByPrimaryKeySelective(PltStation record);
- int updateByPrimaryKey(PltStation record);
-
Long selectSomeCount(Map<String,Object> params);
List<PltStation> selectSome(Map<String,Object> params);
int deleteLogicById(Long id);
+ List<PltStation> selectAll();
+
+ List<PltStation> selectByName(String name);
+
+ String selectMaxCode();
+
+ List<PltStation> selectStationList(PltStation record);
+
+
+ long selectByLineAndStatus(Long lineId, boolean disabled);
}
--
Gitblit v1.8.0