You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.5 KiB
65 lines
1.5 KiB
package com.zc.business.mapper;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import com.zc.business.domain.DcObservationStation;
|
|
|
|
/**
|
|
* 观测站信息Mapper接口
|
|
*
|
|
* @author ruoyi
|
|
* @date 2024-12-09
|
|
*/
|
|
public interface DcObservationStationMapper
|
|
{
|
|
/**
|
|
* 查询观测站信息
|
|
*
|
|
* @param id 观测站信息主键
|
|
* @return 观测站信息
|
|
*/
|
|
public DcObservationStation selectDcObservationStationById(Long id);
|
|
|
|
/**
|
|
* 查询观测站信息列表
|
|
*
|
|
* @param dcObservationStation 观测站信息
|
|
* @return 观测站信息集合
|
|
*/
|
|
List<DcObservationStation> selectDcObservationStationList(DcObservationStation dcObservationStation);
|
|
|
|
/**
|
|
* 新增观测站信息
|
|
*
|
|
* @param dcObservationStation 观测站信息
|
|
* @return 结果
|
|
*/
|
|
int insertDcObservationStation(DcObservationStation dcObservationStation);
|
|
|
|
/**
|
|
* 修改观测站信息
|
|
*
|
|
* @param dcObservationStation 观测站信息
|
|
* @return 结果
|
|
*/
|
|
int updateDcObservationStation(DcObservationStation dcObservationStation);
|
|
|
|
/**
|
|
* 删除观测站信息
|
|
*
|
|
* @param id 观测站信息主键
|
|
* @return 结果
|
|
*/
|
|
int deleteDcObservationStationById(Long id);
|
|
|
|
/**
|
|
* 批量删除观测站信息
|
|
*
|
|
* @param ids 需要删除的数据主键集合
|
|
* @return 结果
|
|
*/
|
|
int deleteDcObservationStationByIds(Long[] ids);
|
|
|
|
List<Map<String,Object>> selectAllStation();
|
|
}
|
|
|