feat(mapper): 更新多个信用模块的关键词搜索功能
- 在CreditBreachOfTrustMapper中添加案件编号关键词搜索 - 在CreditCaseFilingMapper中添加案件编号关键词搜索 - 在CreditCourtAnnouncementMapper中添加案件编号关键词搜索 - 在CreditCourtSessionMapper中添加案件编号关键词搜索 - 在CreditCustomerMapper中添加客户名称关键词搜索 - 在CreditDeliveryNoticeMapper中添加案件编号关键词搜索 - 在CreditExternalMapper中修复外部数据关键词搜索参数 - 在CreditJudgmentDebtorMapper中添加案件编号关键词搜索 - 在CreditJudicialDocumentMapper中添加案件编号关键词搜索 - 在CreditMediationMapper中添加案件编号关键词搜索 - 统一各mapper中的SQL查询格式化缩进
This commit is contained in:
@@ -641,6 +641,9 @@ public class CreditGqdjController extends BaseController {
|
||||
private CreditGqdj convertImportParamToEntity(CreditGqdjImportParam param) {
|
||||
CreditGqdj entity = new CreditGqdj();
|
||||
|
||||
if(param.getCaseNumber2() != null){
|
||||
entity.setCaseNumber(param.getCaseNumber2());
|
||||
}
|
||||
entity.setCaseNumber(param.getCaseNumber());
|
||||
entity.setAppellee(param.getAppellee());
|
||||
entity.setPlaintiffAppellant(param.getPlaintiffAppellant());
|
||||
|
||||
@@ -31,7 +31,7 @@ public class CreditGqdj implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
@Schema(description = "执行通知文书号")
|
||||
private String caseNumber;
|
||||
private String caseNumber;;
|
||||
|
||||
@Schema(description = "被执行人")
|
||||
private String appellee;
|
||||
|
||||
@@ -16,6 +16,9 @@ public class CreditGqdjImportParam implements Serializable {
|
||||
@Excel(name = "执行通知文书号")
|
||||
private String caseNumber;
|
||||
|
||||
@Excel(name = "暗号")
|
||||
private String caseNumber2;
|
||||
|
||||
@Excel(name = "被执行人")
|
||||
private String appellee;
|
||||
|
||||
@@ -40,6 +43,12 @@ public class CreditGqdjImportParam implements Serializable {
|
||||
@Excel(name = "冻结日期至")
|
||||
private String freezeDateEnd;
|
||||
|
||||
@Excel(name = "冻结开始日期")
|
||||
private String freezeDateStart2;
|
||||
|
||||
@Excel(name = "冻结结束日期")
|
||||
private String freezeDateEnd2;
|
||||
|
||||
@Excel(name = "公示日期")
|
||||
private String publicDate;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user