copy from dyh-service/dyh-mediate/src/main/java/cn/huge/module/assist/dao/mapper/CaseAssistApplyMapper.java
copy to dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/CaseWindupApplyMapper.java
File was copied from dyh-service/dyh-mediate/src/main/java/cn/huge/module/assist/dao/mapper/CaseAssistApplyMapper.java |
| | |
| | | package cn.huge.module.assist.dao.mapper; |
| | | package cn.huge.module.cases.dao.mapper; |
| | | |
| | | import cn.huge.module.assist.domain.po.CaseAssistApply; |
| | | import cn.huge.module.cases.domain.po.CaseWindupApply; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.data.domain.PageRequest; |
| | |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @title: 联合处置申请信息表持久层业务处理 |
| | | * @title: 纠纷结案申请信息表持久层业务处理 |
| | | * @Description 此处仅涉及复杂SQL操作,务必不要在此再次写单表的CRUD操作,因为mybatisPlus已经实现。 |
| | | * @company: hugeinfo |
| | | * @author: wangwh |
| | | * @time: 2024-09-05 17:25:04 |
| | | * @author: liyj |
| | | * @time: 2024-09-06 23:57:02 |
| | | * @version 1.0.0 |
| | | */ |
| | | @Repository |
| | | public interface CaseAssistApplyMapper extends BaseMapper<CaseAssistApply>{ |
| | | public interface CaseWindupApplyMapper extends BaseMapper<CaseWindupApply>{ |
| | | |
| | | /** |
| | | * 更新对象 |
| | | * @param entity 对象 |
| | | */ |
| | | void updateCaseAssistApply(@Param("entity") CaseAssistApply entity); |
| | | void updateCaseWindupApply(@Param("entity") CaseWindupApply entity); |
| | | |
| | | /** |
| | | * 条件更新对象 |
| | | * @param entity 对象 |
| | | * @param terms 条件 |
| | | */ |
| | | void updateCaseAssistApplyTerms(@Param("entity") CaseAssistApply entity, @Param("terms") Map<String, Object> terms); |
| | | void updateCaseWindupApplyTerms(@Param("entity") CaseWindupApply entity, @Param("terms") Map<String, Object> terms); |
| | | |
| | | /** |
| | | * 根据编号物理删除 |
| | | * @param id 查询条件集合 |
| | | */ |
| | | void deleteCaseAssistApply(@Param("id") String id); |
| | | void deleteCaseWindupApply(@Param("id") String id); |
| | | |
| | | /** |
| | | * 按条件查询结果集 |
| | | * @param terms 查询条件集合 |
| | | * @return List<CaseAssistApply> |
| | | * @return List<CaseWindupApply> |
| | | */ |
| | | List<CaseAssistApply> listTerms(@Param("terms") Map<String, Object> terms); |
| | | List<CaseWindupApply> listTerms(@Param("terms") Map<String, Object> terms); |
| | | |
| | | /** |
| | | * 按条件查询实体总数 |
| | |
| | | * 按条件查询实体分页结果集 |
| | | * @param page 分页对象 |
| | | * @param terms 查询条件集合 |
| | | * @return List<CaseAssistApply> |
| | | * @return List<CaseWindupApply> |
| | | */ |
| | | List<CaseAssistApply> pageTerms(@Param("page") PageRequest page, @Param("terms") Map<String, Object> terms); |
| | | List<CaseWindupApply> pageTerms(@Param("page") PageRequest page, @Param("terms") Map<String, Object> terms); |
| | | |
| | | } |