| | |
| | | import cn.gistack.sm.sjztmd.entity.AttResBase; |
| | | import cn.gistack.sm.sjztmd.vo.AttAdBaseVO; |
| | | import cn.gistack.sm.sjztmd.vo.AttResAdVO; |
| | | import cn.gistack.sm.sjztmd.vo.AttResBaseGeneralInvestigationVO; |
| | | import cn.gistack.sm.sjztmd.vo.AttResBaseVO; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | |
| | | public interface IAttResBaseService extends IService<AttResBase> { |
| | | |
| | | IPage<AttResBase> selectAttResBasePage(IPage<AttResBase> page, AttResBase attResBase); |
| | | |
| | | IPage<AttResBaseGeneralInvestigationVO> selectAttResBaseGeneralInvestigation(IPage<AttResBaseGeneralInvestigationVO> page, AttResBaseGeneralInvestigationVO attResBase); |
| | | |
| | | IPage<AttResBase> getListByRegion(IPage<AttResBase> page,Map<String, Object> obj); |
| | | |
| | |
| | | * @return |
| | | */ |
| | | AttResAdVO getWaterRegionInfoByResGuid(String guid); |
| | | |
| | | int getDimResInfoACount(); |
| | | |
| | | Boolean updateIsShowStatus(String ids, Integer status); |
| | | |
| | | /** |
| | | * 根据水库名称、所在区域查询改水库的数量 |
| | | * @param resName 水库名称 |
| | | * @param countyName 区县 |
| | | * @return |
| | | */ |
| | | Integer getWaterCountByResNameAndCountyName(String resName, String countyName); |
| | | } |