package cn.huge.module.mediate.dao.mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
import org.springframework.stereotype.Repository;
|
|
|
/**
|
* @title: 司法确认信息表持久层业务处理
|
* @Description 此处仅涉及复杂SQL操作,务必不要在此再次写单表的CRUD操作,因为mybatisPlus已经实现。
|
* @company: hugeinfo
|
* @author: liyj
|
* @time: 2022-04-18 10:40:03
|
* @version 1.0.0
|
*/
|
@Repository
|
public interface JudicInfoMapper {
|
|
/**
|
* 获取最新的司法确认号
|
* @param judicNoPrefix 司法确认号前缀
|
* @param custId 客户编号
|
* @return
|
*/
|
String getNewJudicNo(@Param("judicNoPrefix") String judicNoPrefix, @Param("custId") String custId);
|
}
|