package com.dy.pmsGlobal.daoPlt; 
 | 
  
 | 
import com.dy.pmsGlobal.pojoPlt.PltStation; 
 | 
import org.apache.ibatis.annotations.Mapper; 
 | 
  
 | 
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(Long id,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); 
 | 
} 
 |