package cn.huge.module.cases.dao.mapper;
|
|
import cn.huge.module.cases.domain.po.CasePerson;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Param;
|
import org.springframework.data.domain.PageRequest;
|
import org.springframework.stereotype.Repository;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* @title: 纠纷当事人信息表持久层业务处理
|
* @Description 此处仅涉及复杂SQL操作,务必不要在此再次写单表的CRUD操作,因为mybatisPlus已经实现。
|
* @company: hugeinfo
|
* @author: wangwh
|
* @time: 2024-08-27 10:48:18
|
* @version 1.0.0
|
*/
|
@Repository
|
public interface CasePersonMapper extends BaseMapper<CasePerson>{
|
|
/**
|
* 更新对象
|
* @param entity 对象
|
*/
|
void updateCasePerson(@Param("entity") CasePerson entity);
|
|
/**
|
* 条件更新对象
|
* @param entity 对象
|
* @param terms 条件
|
*/
|
void updateCasePersonTerms(@Param("entity") CasePerson entity, @Param("terms") Map<String, Object> terms);
|
|
/**
|
* 根据编号物理删除
|
* @param id 查询条件集合
|
*/
|
void deleteCasePerson(@Param("id") String id);
|
|
/**
|
* 按条件查询结果集
|
* @param terms 查询条件集合
|
* @return List<CasePerson>
|
*/
|
List<CasePerson> listTerms(@Param("terms") Map<String, Object> terms);
|
|
/**
|
* 按条件查询实体总数
|
* @param terms 查询条件集合
|
* @return long
|
*/
|
long countTerms(@Param("terms") Map<String, Object> terms);
|
|
/**
|
* 按条件查询实体分页结果集
|
* @param page 分页对象
|
* @param terms 查询条件集合
|
* @return List<CasePerson>
|
*/
|
List<CasePerson> pageTerms(@Param("page") PageRequest page, @Param("terms") Map<String, Object> terms);
|
|
/**
|
* 根据纠纷编号查询人员编号
|
* @param caseId 纠纷编号
|
* @return List<String>
|
*/
|
List<String> listIdByCaseId(@Param("caseId") String caseId);
|
/**
|
* 根据证件编号查询人员
|
* @param certiNo 证件编号
|
* @return List<String>
|
*/
|
List<CasePerson> listByCertiNo(@Param("certiNo") String certiNo);
|
|
}
|