19 changed files with 2071 additions and 17 deletions
@ -0,0 +1,112 @@
|
||||
package com.logpm.report.dto; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class ReportCheckTimeDetailDTO implements Serializable { |
||||
|
||||
private Integer hoursTime; |
||||
|
||||
private String businessLine; |
||||
private Long departureWarehouseId; |
||||
private Long destinationWarehouseId; |
||||
|
||||
private List<Long> departureWarehouseIds; |
||||
|
||||
private List<Long> destinationWarehouseIds; |
||||
private List<Long> warehouseIds; |
||||
|
||||
private Integer pageNum; |
||||
private Integer pageSize; |
||||
|
||||
private Long warehouseId; |
||||
|
||||
private List<String> waybillNoList; |
||||
|
||||
private String documentMakingTimeStartStr; |
||||
private String documentMakingTimeEndStr; |
||||
|
||||
private Date documentMakingTimeStartDate; |
||||
private Date documentMakingTimeEndDate; |
||||
|
||||
private String createTimeStartStr; |
||||
private String createTimeEndStr; |
||||
|
||||
private Date createTimeStartDate; |
||||
private Date createTimeEndDate; |
||||
|
||||
private String abolishTimeStartStr; |
||||
private String abolishTimeEndStr; |
||||
private Date abolishTimeStartDate; |
||||
private Date abolishTimeEndDate; |
||||
|
||||
private String freezeTimeStartStr; |
||||
private String freezeTimeEndStr; |
||||
private Date freezeTimeStartDate; |
||||
private Date freezeTimeEndDate; |
||||
|
||||
|
||||
private String checkTimeStartStr; |
||||
private String checkTimeEndStr; |
||||
private Date checkTimeStartDate; |
||||
private Date checkTimeEndDate; |
||||
private String ids; |
||||
|
||||
/** |
||||
* 付款状态 |
||||
*/ |
||||
private String payStatus; |
||||
|
||||
/** |
||||
* 结算状态 |
||||
*/ |
||||
private String settlementStatus; |
||||
|
||||
private String waybillNo; |
||||
private String orderNo; |
||||
private String destinationWarehouseName; |
||||
private String departureWarehouseName; |
||||
private String customerTrain; |
||||
private String brand; |
||||
private String shipper; |
||||
private String shipperName; |
||||
private String shipperMobile; |
||||
private String consignee; |
||||
private String consigneeName; |
||||
private String consigneeMobile; |
||||
private String destination; |
||||
private String completeDestination; |
||||
private String departure; |
||||
private String completeDeparture; |
||||
private Integer payType; |
||||
private Integer payWay; |
||||
private Integer deliveryWay; |
||||
private Integer urgency; |
||||
private Integer serviceType; |
||||
private Integer transportType; |
||||
private Integer waybillStatus; |
||||
private Integer checkStatus; |
||||
private Integer pickupCompleteOrNot; |
||||
private Integer trunklineCompleteOrNot; |
||||
private String agent; |
||||
private String goodsName; |
||||
private Integer freezeStatus; |
||||
private Integer abolishStatus; |
||||
private String remark; |
||||
private String consigneeAddress; |
||||
|
||||
private Integer overTimeStatus; // 0未超时 1超时
|
||||
|
||||
|
||||
// 总运单数 1
|
||||
// 已审单数 2
|
||||
// 未审单数 3
|
||||
// 准时审单数 4
|
||||
private Integer checkDetailType; |
||||
|
||||
|
||||
} |
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,231 @@
|
||||
package com.logpm.report.vo; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelIgnore; |
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
public class ReportCheckWaybillTimeDetailVO implements Serializable { |
||||
|
||||
@ExcelIgnore |
||||
private Long waybillId; |
||||
|
||||
@ExcelProperty(value = "品牌") |
||||
private String brand; |
||||
|
||||
@ExcelProperty(value = "运单号") |
||||
private String waybillNo; |
||||
|
||||
@ExcelProperty(value = "订单号") |
||||
private String orderNo; |
||||
|
||||
|
||||
@ExcelProperty(value = "收货单位") |
||||
private String consignee; |
||||
|
||||
@ExcelProperty(value = "收货人") |
||||
private String consigneeName; |
||||
|
||||
@ExcelProperty(value = "收货人电话") |
||||
private String consigneeMobile; |
||||
|
||||
|
||||
@ExcelProperty(value = "收货人地址") |
||||
private String consigneeAddress; |
||||
|
||||
@ExcelProperty(value = "发货单位") |
||||
private String shipper; |
||||
|
||||
@ExcelProperty(value = "发货人") |
||||
private String shipperName; |
||||
|
||||
|
||||
@ExcelProperty(value = "发货人电话") |
||||
private String shipperMobile; |
||||
|
||||
@ExcelProperty(value = "发货地址") |
||||
private String shipperAddress; |
||||
|
||||
@ExcelProperty(value = "到站") |
||||
private String destination; |
||||
@ExcelProperty(value = "完整到站") |
||||
private String completeDestination; |
||||
@ExcelProperty(value = "发站") |
||||
private String departure; |
||||
@ExcelProperty(value = "完整发站") |
||||
private String completeDeparture; |
||||
@ExcelProperty(value = "发站仓") |
||||
private String departureWarehouseName; |
||||
@ExcelProperty(value = "目的仓") |
||||
private String destinationWarehouseName; |
||||
|
||||
@ExcelProperty(value = "目的仓") |
||||
private String deliveryWay; |
||||
|
||||
@ExcelProperty(value = "车次号") |
||||
private String customerTrain; |
||||
|
||||
@ExcelProperty(value = "备注") |
||||
private String remark; |
||||
|
||||
@ExcelProperty(value = "结算方") |
||||
private String cleanObjType; |
||||
|
||||
@ExcelProperty(value = "支付方式") |
||||
private String payType; |
||||
|
||||
@ExcelProperty(value = "付款方式") |
||||
private String payWay; |
||||
|
||||
@ExcelProperty(value = "现付") |
||||
private BigDecimal nowPay; |
||||
|
||||
@ExcelProperty(value = "到付") |
||||
private BigDecimal arrivePay; |
||||
|
||||
@ExcelProperty(value = "回付") |
||||
private BigDecimal backPay; |
||||
|
||||
@ExcelProperty(value = "月结") |
||||
private BigDecimal monthPay; |
||||
|
||||
@ExcelProperty(value = "服务类型") |
||||
private String serviceType; |
||||
|
||||
@ExcelProperty(value = "是否改单") |
||||
private String updateStatus; |
||||
|
||||
@ExcelProperty(value = "是否审单") |
||||
private String checkStatus; |
||||
|
||||
@ExcelProperty(value = "审核原因") |
||||
private String checkReson; |
||||
|
||||
@ExcelProperty(value = "审核备注") |
||||
private String checkRemark; |
||||
|
||||
@ExcelProperty(value = "审核人") |
||||
private String checkUserName; |
||||
|
||||
@ExcelProperty(value = "审核时间") |
||||
private Date checkTime; |
||||
|
||||
@ExcelProperty(value = "取消审核备注") |
||||
private String cancleCheckRemark; |
||||
|
||||
@ExcelProperty(value = "取消审核人") |
||||
private String cancleCheckUserName; |
||||
|
||||
@ExcelProperty(value = "取消审核时间") |
||||
private Date cancleCheckTime; |
||||
|
||||
@ExcelProperty(value = "运单状态") |
||||
private String waybillStatus; |
||||
|
||||
@ExcelProperty(value = "开单时间") |
||||
private Date openTime; |
||||
|
||||
@ExcelProperty(value = "货物品类") |
||||
private String goodsName; |
||||
|
||||
@ExcelProperty(value = "总数量") |
||||
private Integer totalCount; |
||||
|
||||
@ExcelProperty(value = "总重量") |
||||
private BigDecimal totalWeight; |
||||
|
||||
@ExcelProperty(value = "总体积") |
||||
private BigDecimal totalVolume; |
||||
|
||||
@ExcelProperty(value = "总费用") |
||||
private BigDecimal totalFee; |
||||
|
||||
@ExcelProperty(value = "开单费用") |
||||
private BigDecimal systemTotalFee; |
||||
|
||||
@ExcelProperty(value = "提货费") |
||||
private BigDecimal pickupFee; |
||||
|
||||
@ExcelProperty(value = "运费") |
||||
private BigDecimal freightFee; |
||||
@ExcelProperty(value = "仓库服务费合计") |
||||
private BigDecimal warehouseServiceFee; |
||||
@ExcelProperty(value = "仓储费") |
||||
private BigDecimal warehouseFee; |
||||
@ExcelProperty(value = "仓储管理费") |
||||
private BigDecimal warehouseManagementFee; |
||||
@ExcelProperty(value = "仓储分拣费") |
||||
private BigDecimal warehouseSortingFee; |
||||
@ExcelProperty(value = "仓储操作费") |
||||
private BigDecimal warehouseOprationFee; |
||||
@ExcelProperty(value = "配送服务费合计") |
||||
private BigDecimal deliveryServiceFee; |
||||
@ExcelProperty(value = "配送费") |
||||
private BigDecimal deliveryFee; |
||||
@ExcelProperty(value = "配送装卸费") |
||||
private BigDecimal deliveryHandlingFee; |
||||
@ExcelProperty(value = "配送分货费") |
||||
private BigDecimal deliverySortingFee; |
||||
@ExcelProperty(value = "配送上楼费") |
||||
private BigDecimal deliveryUpfloorFee; |
||||
@ExcelProperty(value = "配送平移费") |
||||
private BigDecimal deliveryMoveFee; |
||||
@ExcelProperty(value = "配送公里数") |
||||
private BigDecimal deliveryLine; |
||||
@ExcelProperty(value = "超区公里费") |
||||
private BigDecimal deliveryLineFee; |
||||
@ExcelProperty(value = "其他费用") |
||||
private BigDecimal otherFee; |
||||
@ExcelProperty(value = "安装费") |
||||
private BigDecimal installFee; |
||||
@ExcelProperty(value = "保价费") |
||||
private BigDecimal insuranceFee; |
||||
@ExcelProperty(value = "申明价值") |
||||
private BigDecimal claimingValue; |
||||
@ExcelProperty(value = "三方操作费") |
||||
private BigDecimal thirdOperationFee; |
||||
@ExcelProperty(value = "回扣") |
||||
private BigDecimal rebate; |
||||
@ExcelProperty(value = "收款状态") |
||||
private String payStatus; |
||||
@ExcelProperty(value = "结算状态") |
||||
private String settlementStatus; |
||||
@ExcelProperty(value = "签收数量") |
||||
private Integer signNum; |
||||
@ExcelProperty(value = "签收时间") |
||||
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||
private Date signTime; |
||||
@ExcelProperty(value = "配送时间") |
||||
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||
private Date deliveryTime; |
||||
@ExcelProperty(value = "签收人") |
||||
private String signUserName; |
||||
@ExcelProperty(value = "配送司机") |
||||
private String deliveryDriverName; |
||||
@ExcelProperty(value = "品类数量") |
||||
private String goodsTypeNum; |
||||
@ExcelProperty(value = "品类开单运费") |
||||
private String goodsTypePrice; |
||||
@ExcelProperty(value = "品类系统配送单价") |
||||
private String goodsTypeDeliveryPrice; |
||||
@ExcelProperty(value = "品类系统提货单价") |
||||
private String goodsTypePickupPrice; |
||||
@ExcelProperty(value = "品类系统运费单价") |
||||
private String goodsTypeFreightPrice; |
||||
@ExcelProperty(value = "品类数") |
||||
private Integer goodsTypeCount; |
||||
@ExcelProperty(value = "实际审单时效") |
||||
private String checkHours; |
||||
|
||||
@ExcelProperty(value = "标准审单时效") |
||||
private String hoursTime; |
||||
|
||||
@ExcelProperty(value = "是否超时") |
||||
private String isOverTime; |
||||
|
||||
} |
@ -0,0 +1,126 @@
|
||||
package com.logpm.report.vo; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelIgnore; |
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
public class ReportOpenTimeDetailVO implements Serializable { |
||||
|
||||
@ExcelProperty(value = "运单号") |
||||
private String waybillNo; |
||||
|
||||
@ExcelProperty(value = "订单号") |
||||
private String orderCode; |
||||
|
||||
@ExcelProperty(value = "商场名称") |
||||
private String dealerName; |
||||
|
||||
@ExcelProperty(value = "发货工厂") |
||||
private String senderFactory; |
||||
|
||||
@ExcelProperty(value = "门店名称") |
||||
private String storeName; |
||||
|
||||
@ExcelIgnore |
||||
private Long warehouseId; |
||||
@ExcelProperty(value = "导入仓库") |
||||
private String warehouseName; |
||||
@ExcelProperty(value = "入库仓库") |
||||
private String incomingWarehouseName; |
||||
|
||||
@ExcelProperty(value = "基地") |
||||
private String siteName; |
||||
|
||||
@ExcelProperty(value = "品牌") |
||||
private String brand; |
||||
|
||||
@ExcelProperty(value = "数量") |
||||
private Integer totalNum; |
||||
|
||||
@ExcelProperty(value = "发货人") |
||||
private String senderName; |
||||
|
||||
@ExcelProperty(value = "发货人电话") |
||||
private String senderPhone; |
||||
|
||||
@ExcelProperty(value = "发货地址") |
||||
private String senderAddress; |
||||
|
||||
@ExcelProperty(value = "商场联系人") |
||||
private String consigneePerson; |
||||
|
||||
@ExcelProperty(value = "联系电话") |
||||
private String consigneeMobile; |
||||
|
||||
@ExcelProperty(value = "地址") |
||||
private String consigneeAddress; |
||||
|
||||
@ExcelProperty(value = "干仓配") |
||||
private String isGcp; |
||||
|
||||
@ExcelProperty(value = "客户车次号") |
||||
private String trainNumber; |
||||
|
||||
@ExcelProperty(value = "遗留") |
||||
private String legacyStatus; |
||||
|
||||
@ExcelProperty(value = "顾客姓名") |
||||
private String customerName; |
||||
|
||||
@ExcelProperty(value = "顾客电话") |
||||
private String customerPhone; |
||||
|
||||
@ExcelProperty(value = "顾客地址") |
||||
private String customerAddress; |
||||
|
||||
@ExcelProperty(value = "交期") |
||||
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||
private Date deliveryDate; |
||||
|
||||
@ExcelProperty(value = "商场编码") |
||||
private String dealerCode; |
||||
|
||||
@ExcelProperty(value = "门店编码") |
||||
private String storeCode; |
||||
|
||||
@ExcelProperty(value = "创建人") |
||||
private String createUserName; |
||||
|
||||
@ExcelProperty(value = "订单类型") |
||||
private String orderType; |
||||
|
||||
@ExcelProperty(value = "订单来源") |
||||
private String systemType; |
||||
|
||||
@ExcelProperty(value = "服务号") |
||||
private String serviceNum; |
||||
|
||||
@ExcelProperty(value = "冻结状态") |
||||
private String freezeStatus; |
||||
|
||||
@ExcelProperty(value = "创建时间") |
||||
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||
private Date createTime; |
||||
|
||||
@ExcelProperty(value = "制单时间") |
||||
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||
private Date documentMakingTime; |
||||
|
||||
@ExcelProperty(value = "是否开单") |
||||
private String waybillStatus; |
||||
|
||||
@ExcelProperty(value = "开单时效") |
||||
private String openHours; |
||||
|
||||
@ExcelProperty(value = "标准开单时效") |
||||
private String hoursTime; |
||||
|
||||
@ExcelProperty(value = "是否超时") |
||||
private String isOverTime; |
||||
|
||||
} |
@ -0,0 +1,50 @@
|
||||
package com.logpm.report.vo; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
public class ReportUpdateWaybillDetailVO implements Serializable { |
||||
|
||||
@ExcelProperty(value = "运单号") |
||||
private String waybillNo; |
||||
|
||||
@ExcelProperty(value = "开单网点") |
||||
private String departureWarehouseName; |
||||
|
||||
@ExcelProperty(value = "状态") |
||||
private String waybillStatus; |
||||
|
||||
@ExcelProperty(value = "开单类型") |
||||
private String waybillType; |
||||
|
||||
@ExcelProperty(value = "制单员") |
||||
private String agent; |
||||
|
||||
@ExcelProperty(value = "开单时间") |
||||
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||
private Date createTime; |
||||
|
||||
@ExcelProperty(value = "申请时间") |
||||
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||
private Date applyTime; |
||||
|
||||
@ExcelProperty(value = "申请网点") |
||||
private String warehouseName; |
||||
|
||||
@ExcelProperty(value = "修改原因") |
||||
private String updateReson; |
||||
|
||||
@ExcelProperty(value = "修改内容") |
||||
private String updateContent; |
||||
|
||||
@ExcelProperty(value = "审核时间") |
||||
@JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
||||
private Date checkUpdateTime; |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue