7 changed files with 302 additions and 5 deletions
@ -0,0 +1,186 @@ |
|||||||
|
package com.logpm.statistics.vo; |
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||||
|
import com.alibaba.excel.annotation.format.DateTimeFormat; |
||||||
|
import com.alibaba.excel.annotation.format.NumberFormat; |
||||||
|
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||||
|
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||||
|
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.math.BigDecimal; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
/** |
||||||
|
* 结算单导出 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ColumnWidth(25) |
||||||
|
@HeadRowHeight(20) |
||||||
|
@ContentRowHeight(18) |
||||||
|
public class StatisticsBalanceOrderExcel implements Serializable { |
||||||
|
|
||||||
|
|
||||||
|
@ExcelProperty(value = "结算单号") |
||||||
|
private String balanceOrderNo; // 结算单号
|
||||||
|
|
||||||
|
@ExcelProperty(value = "品牌") |
||||||
|
private String brand; // 品牌
|
||||||
|
|
||||||
|
@ExcelProperty(value = "运单号") |
||||||
|
private String waybillNo; // 运单号
|
||||||
|
|
||||||
|
@ExcelProperty(value = "订单号") |
||||||
|
private String orderCode; // 订单号
|
||||||
|
|
||||||
|
@ExcelProperty(value = "服务类型") |
||||||
|
private String typeServiceName; // 服务类型
|
||||||
|
//
|
||||||
|
// @ExcelProperty(value = "货物品类")
|
||||||
|
// private String productGoods; // 货物品类
|
||||||
|
|
||||||
|
@ExcelProperty(value = "结算总金额") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal totalBalanceFee; // 结算总金额
|
||||||
|
|
||||||
|
@ExcelProperty(value = "总数量") |
||||||
|
private Integer totalCount; // 总数量
|
||||||
|
|
||||||
|
@ExcelProperty(value = "总重量") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal totalWeight; // 总重量
|
||||||
|
|
||||||
|
@ExcelProperty(value = "总体积") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal totalVolume; // 总体积
|
||||||
|
|
||||||
|
|
||||||
|
@ExcelProperty(value = "收货单位") |
||||||
|
private String consignee; // 收货单位
|
||||||
|
|
||||||
|
@ExcelProperty(value = "实际费用") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal realTotalFee; // 实际费用
|
||||||
|
|
||||||
|
@ExcelProperty(value = "提货费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal pickupFee; // 提货费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "运费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal freightFee; // 运费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "仓库服务费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal warehouseServiceFee; // 仓库服务费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "仓储费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal warehouseFee; // 仓储费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "仓储管理费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal warehouseManageFee; // 仓储管理费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "仓储分拣费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal warehouseSortingFee; // 仓储分拣费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "仓储操作费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal warehouseOperatingFee; // 仓储操作费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "配送费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal deliveryFee; // 配送费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "配送服务费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal deliveryServiceFee; // 配送服务费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "配送装卸费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal deliveryLoadingFee; // 配送装卸费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "配送分拣费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal deliverySortingFee; // 配送分拣费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "配送上楼费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal deliveryUpfloorFee; // 配送上楼费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "配送平移费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal deliveryMoveFee; // 配送平移费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "配送其他费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal deliveryOtherFee; // 配送其他费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "超区费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal deliveryCrossingFee; // 超区费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "安装费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal installFee; // 安装费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "其他费") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal otherFee; // 其他费
|
||||||
|
|
||||||
|
@ExcelProperty(value = "是否有售后") |
||||||
|
private String aftersaleName; // 是否有售后
|
||||||
|
|
||||||
|
@ExcelProperty(value = "售后单号") |
||||||
|
private String aftersaleOrder; // 售后单号
|
||||||
|
|
||||||
|
@ExcelProperty(value = "售后金额") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal aftersalesFee; // 售后金额
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ExcelProperty(value = "结算状态") |
||||||
|
private String balanceStatusName; // 0未结算 1部分结算 2已结算
|
||||||
|
|
||||||
|
@ExcelProperty(value = "已结算金额") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal hasBalanceFee; // 已结算金额
|
||||||
|
|
||||||
|
@ExcelProperty(value = "未结算金额") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal noBalanceFee; // 未结算金额
|
||||||
|
|
||||||
|
@ExcelProperty(value = "结算时间") |
||||||
|
@DateTimeFormat("yyyy-MM-dd") |
||||||
|
private Date balanceTime; // 结算时间
|
||||||
|
|
||||||
|
@ExcelProperty(value = "结算人") |
||||||
|
private String balanceUserName; // 结算人
|
||||||
|
|
||||||
|
@ExcelProperty(value = "结算备注") |
||||||
|
private String balanceRemark; // 结算备注
|
||||||
|
|
||||||
|
@ExcelProperty(value = "是否有异常结算") |
||||||
|
private String abnormalBalanceStatusName; // 是否有异常结算
|
||||||
|
|
||||||
|
@ExcelProperty(value = "异常金额") |
||||||
|
@NumberFormat("0.00") |
||||||
|
private BigDecimal abnormalBalanceFee; // 异常金额
|
||||||
|
|
||||||
|
@ExcelProperty(value = "异常时间") |
||||||
|
@DateTimeFormat("yyyy-MM-dd") |
||||||
|
private Date abnormalTime; // 异常时间
|
||||||
|
|
||||||
|
@ExcelProperty(value = "异常确认人") |
||||||
|
private String abnormalUserName; // 异常确认人
|
||||||
|
|
||||||
|
@ExcelProperty(value = "异常备注") |
||||||
|
private String abnormalRemark; // 异常备注
|
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue