刘小明
2024-07-26 9b63b9770cd02ca73c20196a3e02f971bc6e70e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.dy.pmsGlobal.daoPlt;
 
import com.dy.pmsGlobal.pojoPlt.PltStation;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
* @author 小明
* @description 针对表【plt_station(工站表)】的数据库操作Mapper
* @createDate 2024-05-09 17:13:22
* @Entity com.dy.pmsGlobal.pojoPlt.PltStation
*/
@Mapper
public interface PltStationMapper {
 
    int insertSelective(PltStation record);
 
    PltStation selectByPrimaryKey(Long id);
 
    long selectByCodeId(@Param("id") Long id, @Param("code") String code);
 
    int updateByPrimaryKeySelective(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(@Param("lineId") Long lineId, @Param("disabled") boolean disabled);
}