增加案件编号的筛选条件

This commit is contained in:
黎润豪 2026-02-26 11:39:32 +08:00
parent 86864192de
commit 68d6b87164
2 changed files with 16 additions and 0 deletions

View File

@ -1832,6 +1832,10 @@ public class TsbizrevlistController extends BaseController {
LambdaQueryWrapper<PenaltyCaseInfo> wrapper = new LambdaQueryWrapper<>();
if (queryDTO != null) {
// 案件编号
wrapper.eq(StringUtils.isNotBlank(queryDTO.getCaseid()), PenaltyCaseInfo::getCaseid, queryDTO.getCaseid());
wrapper.like(StringUtils.isNotBlank(queryDTO.getCaseidlike()), PenaltyCaseInfo::getCaseid, queryDTO.getCaseidlike());
// 案件名称
if (StringUtils.isNotBlank(queryDTO.getCasename())) {
wrapper.like(PenaltyCaseInfo::getCasename, queryDTO.getCasename());

View File

@ -20,6 +20,18 @@ public class PenaltyCaseInfoQueryDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 案件编号精确
*/
@ApiModelProperty("案件编号(精确)")
private String caseid;
/**
* 案件编号模糊
*/
@ApiModelProperty("案件编号(模糊)")
private String caseidlike;
/**
* 案件名称
*/