14 changed files with 313 additions and 65 deletions
@ -0,0 +1,15 @@
|
||||
package com.logpm.statistics.vo; |
||||
|
||||
import com.logpm.statistics.entity.StatisticsReconciliationOrderInfoEntity; |
||||
import lombok.Data; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class StatisticsReconciliationOrderInfoVO extends StatisticsReconciliationOrderInfoEntity { |
||||
|
||||
|
||||
private List<StatisticsChangesRecordVO> list = new ArrayList<>(); |
||||
|
||||
} |
@ -0,0 +1,117 @@
|
||||
package com.logpm.statistics.vo; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.math.BigDecimal; |
||||
|
||||
@Data |
||||
public class StatisticsReconciliationInfoExportVO implements Serializable { |
||||
|
||||
@ExcelProperty(value = "对账单号") |
||||
private String reconciliationOrderNo;//对账单号
|
||||
|
||||
@ExcelProperty(value = "订单编号") |
||||
private String orderCode;//订单号
|
||||
|
||||
@ExcelProperty(value = "运单号") |
||||
private String waybillNo;//运单号
|
||||
|
||||
@ExcelProperty(value = "收货单位") |
||||
private String consignee;//收货单位
|
||||
|
||||
@ExcelProperty(value = "总数量") |
||||
private Integer totalNum;//总数量
|
||||
|
||||
@ExcelProperty(value = "总重量") |
||||
private BigDecimal totalWeight;//总重量
|
||||
|
||||
@ExcelProperty(value = "总体积") |
||||
private BigDecimal totalVolume;//总体积
|
||||
|
||||
@ExcelProperty(value = "开单预估价") |
||||
private BigDecimal systemTotalFee;//开单预估价
|
||||
|
||||
@ExcelProperty(value = "实际费用") |
||||
private BigDecimal realTotalFee;//实际费用
|
||||
|
||||
@ExcelProperty(value = "提货费") |
||||
private BigDecimal pickupFee;//提货费
|
||||
|
||||
@ExcelProperty(value = "运费") |
||||
private BigDecimal freightFee;//运费
|
||||
|
||||
@ExcelProperty(value = "仓库服务费") |
||||
private BigDecimal warehouseServiceFee;//仓库服务费
|
||||
|
||||
@ExcelProperty(value = "仓储费") |
||||
private BigDecimal warehouseFee;//仓储费
|
||||
|
||||
@ExcelProperty(value = "仓储管理费") |
||||
private BigDecimal warehouseManageFee;//仓储管理费
|
||||
|
||||
@ExcelProperty(value = "仓储分拣费") |
||||
private BigDecimal warehouseSortingFee;//仓储分拣费
|
||||
|
||||
@ExcelProperty(value = "仓储操作费") |
||||
private BigDecimal warehouseOperatingFee;//仓储操作费
|
||||
|
||||
@ExcelProperty(value = "配送服务费") |
||||
private BigDecimal deliveryServiceFee;//配送服务费
|
||||
|
||||
@ExcelProperty(value = "开单配送费") |
||||
private BigDecimal deliveryFee;//配送费
|
||||
|
||||
@ExcelProperty(value = "配送装卸费") |
||||
private BigDecimal deliveryLoadingFee;//配送装卸费
|
||||
|
||||
@ExcelProperty(value = "配送分货费") |
||||
private BigDecimal deliverySortingFee;//配送分货费
|
||||
|
||||
@ExcelProperty(value = "配送上楼费") |
||||
private BigDecimal deliveryUpfloorFee;//配送上楼费
|
||||
|
||||
@ExcelProperty(value = "配送平移费") |
||||
private BigDecimal deliveryMoveFee;//配送平移费
|
||||
|
||||
@ExcelProperty(value = "配送超区费") |
||||
private BigDecimal deliveryCrossingFee;//超区费
|
||||
|
||||
@ExcelProperty(value = "安装费") |
||||
private BigDecimal installFee;//安装费
|
||||
|
||||
@ExcelProperty(value = "其他费") |
||||
private BigDecimal otherFee;//其他费
|
||||
|
||||
@ExcelProperty(value = "目的仓") |
||||
private String destinationWarehouseName;//目的仓名称
|
||||
|
||||
@ExcelProperty(value = "是否售后") |
||||
private String isAftersale;//是否有售后
|
||||
|
||||
@ExcelProperty(value = "售后单号") |
||||
private String aftersaleOrder;//售后单号
|
||||
|
||||
@ExcelProperty(value = "售后金额") |
||||
private BigDecimal aftersalesFee;//售后金额
|
||||
|
||||
@ExcelProperty(value = "对账单金额") |
||||
private BigDecimal totalFee;//对账单金额
|
||||
|
||||
@ExcelProperty(value = "对账单创建人") |
||||
private String createUserName; |
||||
|
||||
@ExcelProperty(value = "是否异动") |
||||
private String isChanges;//是否有异动 0 否 1是
|
||||
|
||||
@ExcelProperty(value = "异动金额") |
||||
private BigDecimal changesFee;//异动金额
|
||||
|
||||
@ExcelProperty(value = "异动栏目") |
||||
private String changesItems;//异动栏目
|
||||
|
||||
@ExcelProperty(value = "异动备注") |
||||
private String changesRemark;//异动备注
|
||||
|
||||
} |
Loading…
Reference in new issue