| | |
| | | |
| | | 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; |
| | |
| | | |
| | | PltStation selectByPrimaryKey(Long id); |
| | | |
| | | long selectByCodeId(Long id,String code); |
| | | long selectByCodeId(@Param("id") Long id, @Param("code") String code); |
| | | |
| | | int updateByPrimaryKeySelective(PltStation record); |
| | | |
| | |
| | | List<PltStation> selectStationList(PltStation record); |
| | | |
| | | |
| | | long selectByLineAndStatus(Long lineId, boolean disabled); |
| | | long selectByLineAndStatus(@Param("lineId") Long lineId, @Param("disabled") boolean disabled); |
| | | } |