| package com.xzx.gc.system.mapper;  | 
|   | 
| import com.xzx.gc.entity.SysEnvironmentalInfo;  | 
| import com.xzx.gc.model.admin.ItemModel;  | 
| import com.xzx.gc.model.system.SysEnvironmentalInfoVo;  | 
| import com.xzx.gc.util.GcMapper;  | 
| import org.apache.ibatis.annotations.Param;import org.springframework.stereotype.Repository;  | 
|   | 
| import java.util.List;  | 
| import java.util.Map;  | 
|   | 
| @Repository  | 
| public interface SysEnvironmentalInfoMapper extends GcMapper<SysEnvironmentalInfo> {  | 
|     /**  | 
|      *  新增环保资讯  | 
|      * @param params  | 
|      */  | 
|     int addSysEnvironmentalInfo(Map<String,Object> params);  | 
|   | 
|     /**  | 
|      * 查询环保资讯详情  | 
|      * @param params  | 
|      * @return  | 
|      */  | 
|     SysEnvironmentalInfoVo getSysEnvironmentalInfoById(Map<String,Object> params);  | 
|   | 
|     /**  | 
|      * 查询环保资讯列表 新版  | 
|      * @return  | 
|      */  | 
|     List<SysEnvironmentalInfoVo> getSysEnvironmentalInfoListWithMap(Map<String,Object> params);  | 
|   | 
|     /**  | 
|      * 编辑环保资讯  | 
|      * @param params  | 
|      */  | 
|     int editSysEnvironmentalInfo(Map<String,Object> params);  | 
|   | 
|     List<ItemModel> queryOperaIteml(ItemModel item);  | 
|   | 
|     List<ItemModel> queryOperateItemList(ItemModel item);  | 
|   | 
|     List<ItemModel> queryOperateItemChildren(ItemModel item);  | 
|   | 
|     int updateItem(ItemModel item);  | 
|   | 
|     List<ItemModel> querIteml(ItemModel item);  | 
|   | 
|     int insertItemOperate(ItemModel item);  | 
|   | 
|     List<String> queryByTitle(@Param("title")String title, @Param("townIds")List<String> townIds);  | 
|   | 
|     void updateByIds(List<String> updateTownIds);  | 
|   | 
|     int delItem(ItemModel item);  | 
|   | 
|     List<ItemModel> queryOperaIteml1(ItemModel item);  | 
|   | 
|     List<SysEnvironmentalInfo> findPage(@Param("partnerId") String partnerId, @Param("typeName") String typeName, @Param("parentId")String parentId, @Param("delFlag")String delFlag);  | 
| }  |