|
@@ -93,7 +93,7 @@ public class DaHfysLogController {
|
|
|
}
|
|
|
|
|
|
if (StringUtils.isNotBlank(operatorDate_Start) && StringUtils.isNotBlank(operatorDate_End)) {
|
|
|
- queryWrapper.and(i -> i.apply("APPLY_DATE BETWEEN to_date({0},'yyyy-mm-dd hh24:mi:ss') AND to_date({1},'yyyy-mm-dd hh24:mi:ss')", operatorDate_Start, operatorDate_End));
|
|
|
+ queryWrapper.and(i -> i.apply("OPERATOR_DATE BETWEEN to_date({0},'yyyy-mm-dd hh24:mi:ss') AND to_date({1},'yyyy-mm-dd hh24:mi:ss')", operatorDate_Start, operatorDate_End));
|
|
|
}
|
|
|
if (StringUtils.isNotBlank(searchText)) {
|
|
|
queryWrapper.like("CUSTOMER_NO", searchText)
|
|
@@ -114,15 +114,15 @@ public class DaHfysLogController {
|
|
|
@ApiImplicitParam(name = "mrArea", value = "片区", dataType = "String"),
|
|
|
@ApiImplicitParam(name = "mrBook", value = "抄表本", dataType = "String"),
|
|
|
@ApiImplicitParam(name = "operatorDate_Start", value = "开始时间", dataType = "String"),
|
|
|
- @ApiImplicitParam(name = "operatorDate_Eed", value = "结束时间", dataType = "String"),
|
|
|
+ @ApiImplicitParam(name = "operatorDate_End", value = "结束时间", dataType = "String"),
|
|
|
@ApiImplicitParam(name = "searchText", value = "模糊查询(编号、姓名、电话、地址)", dataType = "String")
|
|
|
})
|
|
|
- public void export(HttpServletResponse response, String companyBranch, String mrArea, String mrBook, String operatorDate_Start, String operatorDate_Eed, String searchText) throws IOException {
|
|
|
- QueryWrapper<DaHfysLog> queryWrapper = SelectBtFHLog(companyBranch, mrArea, mrBook, operatorDate_Start, operatorDate_Eed, searchText);
|
|
|
+ public void export(HttpServletResponse response, String companyBranch, String mrArea, String mrBook, String operatorDate_Start, String operatorDate_End, String searchText) throws IOException {
|
|
|
+ QueryWrapper<DaHfysLog> queryWrapper = SelectBtFHLog(companyBranch, mrArea, mrBook, operatorDate_Start, operatorDate_End, searchText);
|
|
|
|
|
|
List<DaHfysLog> list = daHfysLogService.list(queryWrapper);
|
|
|
|
|
|
- ExcleFileUtil.exportExcel(response, list, DaHfysLog.class, "恢复用户列表.xlsx");
|
|
|
+ ExcleFileUtil.exportExcel(response, list, DaHfysLog.class, "恢复用水列表.xlsx");
|
|
|
}
|
|
|
|
|
|
|