21 changed files with 611 additions and 30 deletions
@ -0,0 +1,52 @@
|
||||
package com.logpm.report.controller; |
||||
|
||||
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||
import com.logpm.report.dto.ReportTimeDTO; |
||||
import com.logpm.report.service.IReportTimeService; |
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.boot.ctrl.BladeController; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springframework.web.bind.annotation.*; |
||||
|
||||
import javax.servlet.http.HttpServletResponse; |
||||
|
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/reportTime") |
||||
@Api(value = "时效报表", tags = "时效报表") |
||||
public class ReportTimeController extends BladeController { |
||||
|
||||
private final IReportTimeService reportTimeService; |
||||
|
||||
@PostMapping("/openTimePage") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "开单时效报表", notes = "开单时效报表") |
||||
public R openTimePage(@RequestBody ReportTimeDTO reportTimeDTO) { |
||||
return reportTimeService.openTimePage(reportTimeDTO); |
||||
} |
||||
|
||||
@PostMapping("/openTimeExport") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "开单时效报表导出", notes = "开单时效报表导出") |
||||
public void openTimeExport(@RequestBody ReportTimeDTO reportTimeDTO, HttpServletResponse response) { |
||||
reportTimeService.openTimeExport(reportTimeDTO,response); |
||||
} |
||||
|
||||
@PostMapping("/checkWaybillTimePage") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "审单时效报表", notes = "审单时效报表") |
||||
public R checkWaybillTimePage(@RequestBody ReportTimeDTO reportTimeDTO) { |
||||
return reportTimeService.checkWaybillTimePage(reportTimeDTO); |
||||
} |
||||
|
||||
@PostMapping("/checkWaybillTimeExport") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "审单时效报表导出", notes = "审单时效报表导出") |
||||
public void checkWaybillTimeExport(@RequestBody ReportTimeDTO reportTimeDTO, HttpServletResponse response) { |
||||
reportTimeService.checkWaybillTimeExport(reportTimeDTO,response); |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,27 @@
|
||||
package com.logpm.report.dto; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class ReportTimeDTO implements Serializable { |
||||
|
||||
private Integer pageNum; |
||||
private Integer pageSize; |
||||
|
||||
private List<String> businessLineList; |
||||
private List<String> brandList; |
||||
private List<Long> warehouseIds; |
||||
private List<Long> departureWarehouseIds; |
||||
private List<Long> destinationWarehouseIds; |
||||
|
||||
private String startTimeStr; |
||||
private String endTimeStr; |
||||
|
||||
private Date startTime; |
||||
private Date endTime; |
||||
|
||||
} |
@ -0,0 +1,23 @@
|
||||
package com.logpm.report.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.logpm.report.dto.ReportTimeDTO; |
||||
import com.logpm.report.vo.ReportCheckWaybillTimeVO; |
||||
import com.logpm.report.vo.ReportOpenTimeVO; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
import org.apache.ibatis.annotations.Param; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Mapper |
||||
public interface ReportTimeMapper { |
||||
|
||||
|
||||
IPage<ReportOpenTimeVO> openTimePage(IPage<Object> page,@Param("param") ReportTimeDTO reportTimeDTO); |
||||
|
||||
List<ReportOpenTimeVO> openTimeExport(@Param("param") ReportTimeDTO reportTimeDTO); |
||||
|
||||
IPage<ReportCheckWaybillTimeVO> checkWaybillTimePage(IPage<Object> page, @Param("param") ReportTimeDTO reportTimeDTO); |
||||
|
||||
List<ReportCheckWaybillTimeVO> checkWaybillTimeExport(@Param("param") ReportTimeDTO reportTimeDTO); |
||||
} |
@ -0,0 +1,219 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > |
||||
<mapper namespace="com.logpm.report.mapper.ReportTimeMapper"> |
||||
|
||||
<select id="openTimePage" resultType="com.logpm.report.vo.ReportOpenTimeVO"> |
||||
select waw.business_line businessLine, |
||||
lta.warehouse_id warehouseId, |
||||
lta.warehouse_name warehouseName, |
||||
lta.brand brand, |
||||
count(lta.id) totalNum, |
||||
sum(if(lta.waybill_status='1',1,0)) hasOpenNum, |
||||
sum(if(lta.waybill_status = '0',1,0)) noOpenNum, |
||||
IFNULL(round(sum(if(lta.waybill_status = '0',1,0))/count(lta.id)*100,2),'0.00') noOpenRate, |
||||
sum(if(lta.waybill_status='0' and lta.freeze_status = '1',1,0)) noOpenHasFreezeNum, |
||||
IFNULL(round(sum(if(lta.waybill_status='0' and lta.freeze_status = '1',1,0))/count(lta.id)*100,2),'0.00') noOpenHasFreezeRate, |
||||
sum(if(lta.waybill_status='0' and lta.freeze_status = '0',1,0)) noOpenNoFreezeNum, |
||||
IFNULL(round(sum(if(lta.waybill_status='0' and lta.freeze_status = '0',1,0))/count(lta.id)*100,2),'0.00') noOpenNoFreezeRate, |
||||
sum(IF( lta.waybill_status='1' and lww.create_time <= DATE_ADD( lta.create_time, INTERVAL 72 HOUR ), 1, 0 )) onTimeNum, |
||||
sum(IF( lta.waybill_status='1' and lww.create_time > DATE_ADD( lta.create_time, INTERVAL 72 HOUR ), 1, 0 )) overTimeNum, |
||||
IFNULL(round(sum(IF( lta.waybill_status='1' and lww.create_time <= DATE_ADD( lta.create_time, INTERVAL 72 HOUR ), 1, 0 ))/sum(if(lta.waybill_status='1',1,0))*100,2),'0.00') onTimeRate, |
||||
IFNULL(round(sum(TIMESTAMPDIFF(SECOND, lta.create_time, lww.create_time))/sum(if(lta.waybill_status='1',1,0))/3600,1),'0.0') avgTime |
||||
from logpm_trunkline_advance lta |
||||
left join logpm_warehouse_warehouse waw on waw.id = lta.warehouse_id |
||||
left join logpm_warehouse_waybill lww on lww.waybill_no = lta.waybill_no |
||||
where lta.create_time > '2024-10-22 00:00:00' |
||||
and waw.business_line is not null |
||||
<if test="param.businessLineList != null and param.businessLineList.size() > 0"> |
||||
and waw.business_line in |
||||
<foreach collection="param.businessLineList" item="item" open="(" separator="," close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="param.brandList != null and param.brandList.size() > 0"> |
||||
and lta.brand in |
||||
<foreach collection="param.brandList" item="item" open="(" separator="," close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="param.warehouseIds != null and param.warehouseIds.size() > 0"> |
||||
and lta.warehouse_id in |
||||
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="param.startTime != null "> |
||||
and lta.create_time >= #{param.startTime} |
||||
</if> |
||||
<if test="param.endTime != null "> |
||||
and lta.create_time <= #{param.endTime} |
||||
</if> |
||||
group by waw.business_line, |
||||
lta.warehouse_id, |
||||
lta.warehouse_name, |
||||
lta.brand |
||||
</select> |
||||
|
||||
<select id="openTimeExport" resultType="com.logpm.report.vo.ReportOpenTimeVO"> |
||||
select waw.business_line businessLine, |
||||
lta.warehouse_id warehouseId, |
||||
lta.warehouse_name warehouseName, |
||||
lta.brand brand, |
||||
count(lta.id) totalNum, |
||||
sum(if(lta.waybill_status='1',1,0)) hasOpenNum, |
||||
sum(if(lta.waybill_status = '0',1,0)) noOpenNum, |
||||
IFNULL(concat(round(sum(if(lta.waybill_status = '0',1,0))/count(lta.id)*100,2),'%'),'0.00%') noOpenRate, |
||||
sum(if(lta.waybill_status='0' and lta.freeze_status = '1',1,0)) noOpenHasFreezeNum, |
||||
IFNULL(concat(round(sum(if(lta.waybill_status='0' and lta.freeze_status = '1',1,0))/count(lta.id)*100,2),'%'),'0.00%') noOpenHasFreezeRate, |
||||
sum(if(lta.waybill_status='0' and lta.freeze_status = '0',1,0)) noOpenNoFreezeNum, |
||||
IFNULL(concat(round(sum(if(lta.waybill_status='0' and lta.freeze_status = '0',1,0))/count(lta.id)*100,2),'%'),'0.00%') noOpenNoFreezeRate, |
||||
sum(IF( lta.waybill_status='1' and lww.create_time <= DATE_ADD( lta.create_time, INTERVAL 72 HOUR ), 1, 0 )) onTimeNum, |
||||
sum(IF( lta.waybill_status='1' and lww.create_time > DATE_ADD( lta.create_time, INTERVAL 72 HOUR ), 1, 0 )) overTimeNum, |
||||
IFNULL(concat(round(sum(IF( lta.waybill_status='1' and lww.create_time <= DATE_ADD( lta.create_time, INTERVAL 72 HOUR ), 1, 0 ))/sum(if(lta.waybill_status='1',1,0))*100,2),'%'),'0.00%') onTimeRate, |
||||
IFNULL(round(sum(TIMESTAMPDIFF(SECOND, lta.create_time, lww.create_time))/sum(if(lta.waybill_status='1',1,0))/3600,1),'0.0') avgTime |
||||
from logpm_trunkline_advance lta |
||||
left join logpm_warehouse_warehouse waw on waw.id = lta.warehouse_id |
||||
left join logpm_warehouse_waybill lww on lww.waybill_no = lta.waybill_no |
||||
where lta.create_time > '2024-10-22 00:00:00' |
||||
and waw.business_line is not null |
||||
<if test="param.businessLineList != null and param.businessLineList.size() > 0"> |
||||
and waw.business_line in |
||||
<foreach collection="param.businessLineList" item="item" open="(" separator="," close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="param.brandList != null and param.brandList.size() > 0"> |
||||
and lta.brand in |
||||
<foreach collection="param.brandList" item="item" open="(" separator="," close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="param.warehouseIds != null and param.warehouseIds.size() > 0"> |
||||
and lta.warehouse_id in |
||||
<foreach collection="param.warehouseIds" item="item" open="(" separator="," close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="param.startTime != null "> |
||||
and lta.create_time >= #{param.startTime} |
||||
</if> |
||||
<if test="param.endTime != null "> |
||||
and lta.create_time <= #{param.endTime} |
||||
</if> |
||||
group by waw.business_line, |
||||
lta.warehouse_id, |
||||
lta.warehouse_name, |
||||
lta.brand |
||||
</select> |
||||
|
||||
<select id="checkWaybillTimePage" resultType="com.logpm.report.vo.ReportCheckWaybillTimeVO"> |
||||
select waw.business_line businessLine, |
||||
lww.departure_warehouse_id departureWarehouseId, |
||||
lww.departure_warehouse_name departureWarehouseName, |
||||
lww.destination_warehouse_id destinationWarehouseId, |
||||
lww.destination_warehouse_name destinationWarehouseName, |
||||
lww.brand brand, |
||||
count(lww.id) totalNum, |
||||
sum(if(lww.check_status=1,1,0)) hasCheckNum, |
||||
IFNULL(round(sum(if(lww.check_status=1,1,0))/count(lww.id)*100,2),'0.00') hasCheckRate, |
||||
sum(IF( lww.check_status=1 and lww.check_time <= DATE_ADD( lww.create_time, INTERVAL 72 HOUR ), 1, 0 )) onTimeCheckNum, |
||||
IFNULL(round(sum(IF( lww.check_status=1 and lww.check_time <= DATE_ADD( lww.create_time, INTERVAL 72 HOUR ), 1, 0 ))/sum(if(lww.check_status=1,1,0))*100,2),'0.00') onTimeCheckRate, |
||||
IFNULL(round(sum(TIMESTAMPDIFF(SECOND, lww.create_time, lww.check_time))/sum(if(lww.check_status=1,1,0))/3600,1),'0.0') avgCheckTime |
||||
from logpm_warehouse_waybill lww |
||||
left join logpm_warehouse_warehouse waw on waw.id = lww.departure_warehouse_id |
||||
where lww.create_time > '2024-10-22 00:00:00' |
||||
and waw.business_line is not null |
||||
<if test="param.businessLineList != null and param.businessLineList.size() > 0"> |
||||
and waw.business_line in |
||||
<foreach collection="param.businessLineList" item="item" open="(" separator="," close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="param.brandList != null and param.brandList.size() > 0"> |
||||
and lww.brand in |
||||
<foreach collection="param.brandList" item="item" open="(" separator="," close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="param.departureWarehouseIds != null and param.departureWarehouseIds.size() > 0"> |
||||
and lww.departure_warehouse_id in |
||||
<foreach collection="param.departureWarehouseIds" item="item" open="(" separator="," close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="param.destinationWarehouseIds != null and param.destinationWarehouseIds.size() > 0"> |
||||
and lww.destination_warehouse_id in |
||||
<foreach collection="param.destinationWarehouseIds" item="item" open="(" separator="," close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="param.startTime != null "> |
||||
and lww.create_time >= #{param.startTime} |
||||
</if> |
||||
<if test="param.endTime != null "> |
||||
and lww.create_time <= #{param.endTime} |
||||
</if> |
||||
group by waw.business_line, |
||||
lww.departure_warehouse_id, |
||||
lww.departure_warehouse_name, |
||||
lww.destination_warehouse_id, |
||||
lww.destination_warehouse_name, |
||||
lww.brand |
||||
</select> |
||||
|
||||
<select id="checkWaybillTimeExport" resultType="com.logpm.report.vo.ReportCheckWaybillTimeVO"> |
||||
select waw.business_line businessLine, |
||||
lww.departure_warehouse_id departureWarehouseId, |
||||
lww.departure_warehouse_name departureWarehouseName, |
||||
lww.destination_warehouse_id destinationWarehouseId, |
||||
lww.destination_warehouse_name destinationWarehouseName, |
||||
lww.brand brand, |
||||
count(lww.id) totalNum, |
||||
sum(if(lww.check_status=1,1,0)) hasCheckNum, |
||||
IFNULL(concat(round(sum(if(lww.check_status=1,1,0))/count(lww.id)*100,2),'%'),'0.00%') hasCheckRate, |
||||
sum(IF( lww.check_status=1 and lww.check_time <= DATE_ADD( lww.create_time, INTERVAL 72 HOUR ), 1, 0 )) onTimeCheckNum, |
||||
IFNULL(concat(round(sum(IF( lww.check_status=1 and lww.check_time <= DATE_ADD( lww.create_time, INTERVAL 72 HOUR ), 1, 0 ))/sum(if(lww.check_status=1,1,0))*100,2),'%'),'0.00%') onTimeCheckRate, |
||||
IFNULL(round(sum(TIMESTAMPDIFF(SECOND, lww.create_time, lww.check_time))/sum(if(lww.check_status=1,1,0))/3600,1),'0.0') avgCheckTime |
||||
from logpm_warehouse_waybill lww |
||||
left join logpm_warehouse_warehouse waw on waw.id = lww.departure_warehouse_id |
||||
where lww.create_time > '2024-10-22 00:00:00' |
||||
and waw.business_line is not null |
||||
<if test="param.businessLineList != null and param.businessLineList.size() > 0"> |
||||
and waw.business_line in |
||||
<foreach collection="param.businessLineList" item="item" open="(" separator="," close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="param.brandList != null and param.brandList.size() > 0"> |
||||
and lww.brand in |
||||
<foreach collection="param.brandList" item="item" open="(" separator="," close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="param.departureWarehouseIds != null and param.departureWarehouseIds.size() > 0"> |
||||
and lww.departure_warehouse_id in |
||||
<foreach collection="param.departureWarehouseIds" item="item" open="(" separator="," close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="param.destinationWarehouseIds != null and param.destinationWarehouseIds.size() > 0"> |
||||
and lww.destination_warehouse_id in |
||||
<foreach collection="param.destinationWarehouseIds" item="item" open="(" separator="," close=")"> |
||||
#{item} |
||||
</foreach> |
||||
</if> |
||||
<if test="param.startTime != null "> |
||||
and lww.create_time >= #{param.startTime} |
||||
</if> |
||||
<if test="param.endTime != null "> |
||||
and lww.create_time <= #{param.endTime} |
||||
</if> |
||||
group by waw.business_line, |
||||
lww.departure_warehouse_id, |
||||
lww.departure_warehouse_name, |
||||
lww.destination_warehouse_id, |
||||
lww.destination_warehouse_name, |
||||
lww.brand |
||||
</select> |
||||
|
||||
</mapper> |
@ -0,0 +1,18 @@
|
||||
package com.logpm.report.service; |
||||
|
||||
import com.logpm.report.dto.ReportTimeDTO; |
||||
import org.springblade.core.tool.api.R; |
||||
|
||||
import javax.servlet.http.HttpServletResponse; |
||||
|
||||
public interface IReportTimeService { |
||||
|
||||
|
||||
R openTimePage(ReportTimeDTO reportTimeDTO); |
||||
|
||||
void openTimeExport(ReportTimeDTO reportTimeDTO, HttpServletResponse response); |
||||
|
||||
R checkWaybillTimePage(ReportTimeDTO reportTimeDTO); |
||||
|
||||
void checkWaybillTimeExport(ReportTimeDTO reportTimeDTO, HttpServletResponse response); |
||||
} |
@ -0,0 +1,90 @@
|
||||
package com.logpm.report.service.impl; |
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
||||
import com.logpm.report.dto.ReportTimeDTO; |
||||
import com.logpm.report.mapper.ReportTimeMapper; |
||||
import com.logpm.report.service.IReportTimeService; |
||||
import com.logpm.report.vo.ReportCheckWaybillTimeVO; |
||||
import com.logpm.report.vo.ReportOpenTimeVO; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.common.utils.CommonUtil; |
||||
import org.springblade.core.excel.util.ExcelUtil; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
import javax.servlet.http.HttpServletResponse; |
||||
import java.util.List; |
||||
|
||||
@Service |
||||
@Slf4j |
||||
@AllArgsConstructor |
||||
public class ReportTimeServiceImpl implements IReportTimeService { |
||||
|
||||
private final ReportTimeMapper reportTimeMapper; |
||||
|
||||
|
||||
@Override |
||||
public R openTimePage(ReportTimeDTO reportTimeDTO) { |
||||
|
||||
IPage<Object> page = new Page<>(); |
||||
page.setCurrent(reportTimeDTO.getPageNum()); |
||||
page.setSize(reportTimeDTO.getPageSize()); |
||||
|
||||
reportTimeDTO.setStartTime(CommonUtil.getStartByDateStr(reportTimeDTO.getStartTimeStr())); |
||||
reportTimeDTO.setEndTime(CommonUtil.getEndByDateStr(reportTimeDTO.getEndTimeStr())); |
||||
|
||||
IPage<ReportOpenTimeVO> iPage = reportTimeMapper.openTimePage(page,reportTimeDTO); |
||||
|
||||
|
||||
return R.data(iPage); |
||||
} |
||||
|
||||
@Override |
||||
public void openTimeExport(ReportTimeDTO reportTimeDTO, HttpServletResponse response) { |
||||
|
||||
IPage<Object> page = new Page<>(); |
||||
page.setCurrent(reportTimeDTO.getPageNum()); |
||||
page.setSize(reportTimeDTO.getPageSize()); |
||||
|
||||
reportTimeDTO.setStartTime(CommonUtil.getStartByDateStr(reportTimeDTO.getStartTimeStr())); |
||||
reportTimeDTO.setEndTime(CommonUtil.getEndByDateStr(reportTimeDTO.getEndTimeStr())); |
||||
|
||||
List<ReportOpenTimeVO> list = reportTimeMapper.openTimeExport(reportTimeDTO); |
||||
|
||||
//导出ls
|
||||
ExcelUtil.export(response, "开单及时率报表导出", "开单及时率报表导出", list, ReportOpenTimeVO.class); |
||||
|
||||
} |
||||
|
||||
@Override |
||||
public R checkWaybillTimePage(ReportTimeDTO reportTimeDTO) { |
||||
IPage<Object> page = new Page<>(); |
||||
page.setCurrent(reportTimeDTO.getPageNum()); |
||||
page.setSize(reportTimeDTO.getPageSize()); |
||||
|
||||
reportTimeDTO.setStartTime(CommonUtil.getStartByDateStr(reportTimeDTO.getStartTimeStr())); |
||||
reportTimeDTO.setEndTime(CommonUtil.getEndByDateStr(reportTimeDTO.getEndTimeStr())); |
||||
|
||||
IPage<ReportCheckWaybillTimeVO> iPage = reportTimeMapper.checkWaybillTimePage(page,reportTimeDTO); |
||||
|
||||
|
||||
return R.data(iPage); |
||||
} |
||||
|
||||
@Override |
||||
public void checkWaybillTimeExport(ReportTimeDTO reportTimeDTO, HttpServletResponse response) { |
||||
IPage<Object> page = new Page<>(); |
||||
page.setCurrent(reportTimeDTO.getPageNum()); |
||||
page.setSize(reportTimeDTO.getPageSize()); |
||||
|
||||
reportTimeDTO.setStartTime(CommonUtil.getStartByDateStr(reportTimeDTO.getStartTimeStr())); |
||||
reportTimeDTO.setEndTime(CommonUtil.getEndByDateStr(reportTimeDTO.getEndTimeStr())); |
||||
|
||||
List<ReportCheckWaybillTimeVO> list = reportTimeMapper.checkWaybillTimeExport(reportTimeDTO); |
||||
|
||||
//导出ls
|
||||
ExcelUtil.export(response, "审单及时率报表导出", "审单及时率报表导出", list, ReportCheckWaybillTimeVO.class); |
||||
} |
||||
} |
@ -0,0 +1,37 @@
|
||||
package com.logpm.report.vo; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelIgnore; |
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
@Data |
||||
public class ReportCheckWaybillTimeVO implements Serializable { |
||||
|
||||
@ExcelProperty(value = "事业线") |
||||
private String businessLine; |
||||
@ExcelIgnore |
||||
private Long departureWarehouseId; |
||||
@ExcelProperty(value = "发站仓") |
||||
private String departureWarehouseName; |
||||
@ExcelIgnore |
||||
private Long destinationWarehouseId; |
||||
@ExcelProperty(value = "目的仓") |
||||
private String destinationWarehouseName; |
||||
@ExcelProperty(value = "品牌") |
||||
private String brand; |
||||
@ExcelProperty(value = "总运单数") |
||||
private Integer totalNum; |
||||
@ExcelProperty(value = "已审单数") |
||||
private Integer hasCheckNum; |
||||
@ExcelProperty(value = "审单率") |
||||
private String hasCheckRate; |
||||
@ExcelProperty(value = "准时审单数") |
||||
private Integer onTimeCheckNum; |
||||
@ExcelProperty(value = "审单准时率") |
||||
private String onTimeCheckRate; |
||||
@ExcelProperty(value = "平均审单时效") |
||||
private String avgCheckTime; |
||||
|
||||
} |
@ -0,0 +1,45 @@
|
||||
package com.logpm.report.vo; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelIgnore; |
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
@Data |
||||
public class ReportOpenTimeVO implements Serializable { |
||||
|
||||
@ExcelProperty(value = "事业线") |
||||
private String businessLine; |
||||
@ExcelIgnore |
||||
private Long warehouseId; |
||||
@ExcelProperty(value = "导入仓库") |
||||
private String warehouseName; |
||||
@ExcelProperty(value = "品牌") |
||||
private String brand; |
||||
@ExcelProperty(value = "总单数") |
||||
private Integer totalNum; |
||||
@ExcelProperty(value = "已开单数") |
||||
private Integer hasOpenNum; |
||||
@ExcelProperty(value = "未开单数") |
||||
private Integer noOpenNum; |
||||
@ExcelProperty(value = "未开单占比") |
||||
private String noOpenRate; |
||||
@ExcelProperty(value = "未开单已冻结数") |
||||
private Integer noOpenHasFreezeNum; |
||||
@ExcelProperty(value = "未开单已冻结占比") |
||||
private String noOpenHasFreezeRate; |
||||
@ExcelProperty(value = "未开单未处理数") |
||||
private Integer noOpenNoFreezeNum; |
||||
@ExcelProperty(value = "未处理占比") |
||||
private String noOpenNoFreezeRate; |
||||
@ExcelProperty(value = "准时开单数") |
||||
private Integer onTimeNum; |
||||
@ExcelProperty(value = "超期开单数") |
||||
private Integer overTimeNum; |
||||
@ExcelProperty(value = "开单准时率") |
||||
private String onTimeRate; |
||||
@ExcelProperty(value = "平均开单时效") |
||||
private String avgTime; |
||||
|
||||
} |
Loading…
Reference in new issue