| | |
| | | import cn.gistack.sm.sjztmd.vo.ManagePersonVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.HashMap; |
| | |
| | | * |
| | | * @author Chill |
| | | */ |
| | | |
| | | @Mapper |
| | | public interface AttResBaseMapper extends BaseMapper<AttResBase> { |
| | | |
| | | |
| | |
| | | |
| | | List<AttResBaseGeneralInvestigationVO> selectAttResBaseGeneralInvestigation(IPage<AttResBaseGeneralInvestigationVO> page, @Param("attResBase") AttResBaseGeneralInvestigationVO attResBase); |
| | | |
| | | List<AttResBase> getListByRegion(IPage<AttResBase> page,@Param("obj") Map<String, Object> obj); |
| | | List<AttResBaseVO> getListByRegion(IPage<AttResBaseVO> page,@Param("obj") Map<String, Object> obj); |
| | | |
| | | AttResBase getDetailByCode(@Param("code") String code); |
| | | |
| | |
| | | |
| | | Boolean updateRsvr(@Param("attResBase") AttResBase attResBase); |
| | | |
| | | /** |
| | | * 获取操作记录 |
| | | * @param guid |
| | | * @return |
| | | */ |
| | | String getUpdateLog(@Param("resGuid") String guid); |
| | | |
| | | int updateRelResUpdateLoc(@Param("resGuid") String guid,@Param("updateLog") String updateLog); |
| | | } |