feat(mapper): 更新多个信用模块的关键词搜索功能

- 在CreditBreachOfTrustMapper中添加案件编号关键词搜索
- 在CreditCaseFilingMapper中添加案件编号关键词搜索
- 在CreditCourtAnnouncementMapper中添加案件编号关键词搜索
- 在CreditCourtSessionMapper中添加案件编号关键词搜索
- 在CreditCustomerMapper中添加客户名称关键词搜索
- 在CreditDeliveryNoticeMapper中添加案件编号关键词搜索
- 在CreditExternalMapper中修复外部数据关键词搜索参数
- 在CreditJudgmentDebtorMapper中添加案件编号关键词搜索
- 在CreditJudicialDocumentMapper中添加案件编号关键词搜索
- 在CreditMediationMapper中添加案件编号关键词搜索
- 统一各mapper中的SQL查询格式化缩进
This commit is contained in:
2026-01-30 12:55:29 +08:00
parent 0af3b6467d
commit 79b2d584dc
3 changed files with 13 additions and 1 deletions

View File

@@ -641,6 +641,9 @@ public class CreditGqdjController extends BaseController {
private CreditGqdj convertImportParamToEntity(CreditGqdjImportParam param) { private CreditGqdj convertImportParamToEntity(CreditGqdjImportParam param) {
CreditGqdj entity = new CreditGqdj(); CreditGqdj entity = new CreditGqdj();
if(param.getCaseNumber2() != null){
entity.setCaseNumber(param.getCaseNumber2());
}
entity.setCaseNumber(param.getCaseNumber()); entity.setCaseNumber(param.getCaseNumber());
entity.setAppellee(param.getAppellee()); entity.setAppellee(param.getAppellee());
entity.setPlaintiffAppellant(param.getPlaintiffAppellant()); entity.setPlaintiffAppellant(param.getPlaintiffAppellant());

View File

@@ -31,7 +31,7 @@ public class CreditGqdj implements Serializable {
private Integer id; private Integer id;
@Schema(description = "执行通知文书号") @Schema(description = "执行通知文书号")
private String caseNumber; private String caseNumber;;
@Schema(description = "被执行人") @Schema(description = "被执行人")
private String appellee; private String appellee;

View File

@@ -16,6 +16,9 @@ public class CreditGqdjImportParam implements Serializable {
@Excel(name = "执行通知文书号") @Excel(name = "执行通知文书号")
private String caseNumber; private String caseNumber;
@Excel(name = "暗号")
private String caseNumber2;
@Excel(name = "被执行人") @Excel(name = "被执行人")
private String appellee; private String appellee;
@@ -40,6 +43,12 @@ public class CreditGqdjImportParam implements Serializable {
@Excel(name = "冻结日期至") @Excel(name = "冻结日期至")
private String freezeDateEnd; private String freezeDateEnd;
@Excel(name = "冻结开始日期")
private String freezeDateStart2;
@Excel(name = "冻结结束日期")
private String freezeDateEnd2;
@Excel(name = "公示日期") @Excel(name = "公示日期")
private String publicDate; private String publicDate;
} }