14 changed files with 505 additions and 27 deletions
@ -0,0 +1,29 @@
|
||||
package org.springblade.common.serializer; |
||||
|
||||
|
||||
import com.fasterxml.jackson.core.JsonGenerator; |
||||
import com.fasterxml.jackson.databind.JsonSerializer; |
||||
import com.fasterxml.jackson.databind.SerializerProvider; |
||||
|
||||
import java.io.IOException; |
||||
import java.math.BigDecimal; |
||||
|
||||
/** |
||||
* 重量提价方面的格式化 |
||||
* 页面呈现4位小数 |
||||
* |
||||
* @see BigDecimal |
||||
* @用法 @JsonSerialize(using = BigDecimalSerializer.class) |
||||
*/ |
||||
public class BigDecimal4WVSerializer extends JsonSerializer<BigDecimal> { |
||||
@Override |
||||
public void serialize(BigDecimal bigDecimal, JsonGenerator jsonGenerator, SerializerProvider serializerProvider) throws IOException { |
||||
if (bigDecimal != null) { |
||||
BigDecimal number = bigDecimal.setScale(4, BigDecimal.ROUND_HALF_UP); |
||||
jsonGenerator.writeNumber(number); |
||||
} else { |
||||
jsonGenerator.writeNumber(bigDecimal); |
||||
} |
||||
|
||||
} |
||||
} |
@ -0,0 +1,29 @@
|
||||
package org.springblade.common.serializer; |
||||
|
||||
|
||||
import com.fasterxml.jackson.core.JsonGenerator; |
||||
import com.fasterxml.jackson.databind.JsonSerializer; |
||||
import com.fasterxml.jackson.databind.SerializerProvider; |
||||
|
||||
import java.io.IOException; |
||||
import java.math.BigDecimal; |
||||
|
||||
/** |
||||
* 金额方面的格式化 |
||||
* 页面呈现2位小数 |
||||
* |
||||
* @see BigDecimal |
||||
* @用法 @JsonSerialize(using = BigDecimalSerializer.class) |
||||
*/ |
||||
public class BigDecimalSerializer extends JsonSerializer<BigDecimal> { |
||||
@Override |
||||
public void serialize(BigDecimal bigDecimal, JsonGenerator jsonGenerator, SerializerProvider serializerProvider) throws IOException { |
||||
if (bigDecimal != null) { |
||||
BigDecimal number = bigDecimal.setScale(2, BigDecimal.ROUND_HALF_UP); |
||||
jsonGenerator.writeNumber(number); |
||||
} else { |
||||
jsonGenerator.writeNumber(bigDecimal); |
||||
} |
||||
|
||||
} |
||||
} |
@ -0,0 +1,281 @@
|
||||
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 lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class TrunklineCarCostExcel implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 申请时间 |
||||
*/ |
||||
@ExcelProperty(value = "申请时间") |
||||
@DateTimeFormat("yyyy-MM-dd") |
||||
private Date effectTime; |
||||
|
||||
/** |
||||
* 车牌号 |
||||
*/ |
||||
@ExcelProperty(value = "车牌号") |
||||
private String plateNumber; |
||||
|
||||
/** |
||||
* 司机名称 |
||||
*/ |
||||
@ExcelProperty(value = "司机名称") |
||||
private String driverName; |
||||
|
||||
/** |
||||
* 实际收款人 |
||||
*/ |
||||
@ExcelProperty(value = "实际收款人") |
||||
private String actualReceivablePerson; |
||||
|
||||
/** |
||||
* 车次号码 |
||||
*/ |
||||
@ExcelProperty(value = "车次号码") |
||||
private String carsNo; |
||||
|
||||
/** |
||||
* 车次类型 1外请 2自有 目前该字段不使用 |
||||
* |
||||
*/ |
||||
@ExcelProperty(value = "车次类型 1外请 2自有 ") |
||||
private Integer carsNoType; |
||||
|
||||
/** |
||||
* 调车员 |
||||
*/ |
||||
@ExcelProperty(value = "调车员") |
||||
private String driverStaff; |
||||
|
||||
/** |
||||
* 车辆类型(结算车辆类型) |
||||
*/ |
||||
@ExcelProperty(value = "车辆类型") |
||||
private String vehicleType; |
||||
|
||||
// /**
|
||||
// * 客户名称 和货物品牌 相同
|
||||
// */
|
||||
// private String customerName;
|
||||
|
||||
/** |
||||
* 货物品牌,多个拼接在一起 |
||||
*/ |
||||
@ExcelProperty(value = "货物品牌,多个拼接在一起") |
||||
private String brands; |
||||
|
||||
/** |
||||
* 起始站点 |
||||
*/ |
||||
@ExcelProperty(value = "起始站点") |
||||
private String startStation; |
||||
|
||||
/** |
||||
* 外请网点 |
||||
*/ |
||||
@ExcelProperty(value = "外请网点") |
||||
private String outStation; |
||||
|
||||
/** |
||||
* 货数 |
||||
*/ |
||||
@ExcelProperty(value = "货数") |
||||
private Integer goodsNum; |
||||
|
||||
/** |
||||
* 原价(元) |
||||
*/ |
||||
@ExcelProperty(value = "原价") |
||||
@NumberFormat("##.00") |
||||
private BigDecimal originalPrice; |
||||
|
||||
/** |
||||
* 实际驾驶员费用(元) |
||||
*/ |
||||
@ExcelProperty(value = "实际驾驶员费用(元)") |
||||
@NumberFormat("##.00") |
||||
private BigDecimal actualDriverFee; |
||||
|
||||
/** |
||||
* 燃油卡费(元) |
||||
*/ |
||||
@ExcelProperty(value = "燃油卡费(元)") |
||||
@NumberFormat("0.00") |
||||
private BigDecimal fuelCardFee; |
||||
|
||||
/** |
||||
* 路桥费f(元) |
||||
*/ |
||||
@ExcelProperty(value = "路桥费(元)") |
||||
@NumberFormat("0.00") |
||||
private BigDecimal bridgeFee; |
||||
|
||||
/** |
||||
* 现付运输费(元) |
||||
*/ |
||||
@ExcelProperty(value = "现付运输费(元)") |
||||
@NumberFormat("0.00") |
||||
private BigDecimal nowFreightFee; |
||||
|
||||
/** |
||||
* 回收货运费(元) |
||||
*/ |
||||
@ExcelProperty(value = "回收货运费(元)") |
||||
@NumberFormat("0.00") |
||||
private BigDecimal returnFreightFee; |
||||
|
||||
/** |
||||
* 到付运输费(元) |
||||
*/ |
||||
@ExcelProperty(value = "到付运输费(元)") |
||||
@NumberFormat("0.00") |
||||
private BigDecimal payFreightFee; |
||||
|
||||
/** |
||||
* 整车信息费(元) |
||||
*/ |
||||
@ExcelProperty(value = "整车信息费(元)") |
||||
@NumberFormat("0.00") |
||||
private BigDecimal trailerInsuranceFee; |
||||
|
||||
/** |
||||
* 整车保险费(元) |
||||
*/ |
||||
@ExcelProperty(value = "整车保险费(元)") |
||||
@NumberFormat("0.00") |
||||
private BigDecimal trailerInsuranceCost; |
||||
|
||||
/** |
||||
* 整车落地费(元) |
||||
*/ |
||||
@ExcelProperty(value = "整车落地费(元)") |
||||
@NumberFormat("0.00") |
||||
private BigDecimal landingFee; |
||||
|
||||
/** |
||||
* 发站装车费(元) |
||||
*/ |
||||
@ExcelProperty(value = "发站装车费(元)") |
||||
@NumberFormat("0.00") |
||||
private BigDecimal stationLoadingFee; |
||||
|
||||
/** |
||||
* 发站其它费(元) |
||||
*/ |
||||
@ExcelProperty(value = "发站其它费(元)") |
||||
@NumberFormat("0.00") |
||||
private BigDecimal otherStationFee; |
||||
|
||||
/** |
||||
* 到站卸车费(元) |
||||
*/ |
||||
@ExcelProperty(value = "到站卸车费(元)") |
||||
@NumberFormat("0.00") |
||||
private BigDecimal stationUnloadingFee; |
||||
|
||||
/** |
||||
* 其他费用(元) |
||||
*/ |
||||
@ExcelProperty(value = "其他费用(元)") |
||||
@NumberFormat("0.00") |
||||
private BigDecimal otherFee; |
||||
|
||||
/** |
||||
*额外费用(元) |
||||
*/ |
||||
@ExcelProperty(value = "额外费用(元)") |
||||
@NumberFormat("0.00") |
||||
private BigDecimal additionalFee; |
||||
//
|
||||
// /**
|
||||
// * 平台结算fee(元)
|
||||
// */
|
||||
// @ExcelProperty(value = "平台结算fee(元)")
|
||||
// @NumberFormat("0.00")
|
||||
// private BigDecimal platformSettlementFee;
|
||||
//
|
||||
// /**
|
||||
// *钉钉编号
|
||||
// */
|
||||
// @ExcelProperty(value = "钉钉编号")
|
||||
// private String dingDingNumber;
|
||||
//
|
||||
// /**
|
||||
// * 平台订单号
|
||||
// */
|
||||
// @ExcelProperty(value = "平台订单号")
|
||||
// private String platformOrderNumber;
|
||||
//
|
||||
// /**
|
||||
// * 付款时间
|
||||
// */
|
||||
// @ExcelProperty(value = "付款时间")
|
||||
// @DateTimeFormat("yyyy-MM-dd")
|
||||
// private Date paymentTime;
|
||||
//
|
||||
// /**
|
||||
// * 付款方名称
|
||||
// */
|
||||
// @ExcelProperty(value = "付款方名称")
|
||||
// private String paymentName;
|
||||
//
|
||||
// /**
|
||||
// * 付款方账号
|
||||
// */
|
||||
// @ExcelProperty(value = "付款方账号")
|
||||
// private String paymentAccount;
|
||||
//
|
||||
// /**
|
||||
// * 收款方如是平台叫车该字段未平台名称
|
||||
// */
|
||||
// @ExcelProperty(value = "收款方如是平台叫车该字段未平台名称")
|
||||
// private String receiveName;
|
||||
//
|
||||
// /**
|
||||
// * 收款账号
|
||||
// */
|
||||
// @ExcelProperty(value = "收款账号")
|
||||
// private String receiveAccount;
|
||||
//
|
||||
// /**
|
||||
// * 线路名称
|
||||
// */
|
||||
// @ExcelProperty(value = "线路名称")
|
||||
// private String routeName;
|
||||
//
|
||||
// /**
|
||||
// * 付款记录ID
|
||||
// */
|
||||
// @ExcelProperty(value = "付款记录ID")
|
||||
// private String carPayId;
|
||||
//
|
||||
// /**
|
||||
// * 是否确认1确认0未确认
|
||||
// */
|
||||
// @ExcelProperty(value = "是否确认1确认0未确认")
|
||||
// private Integer isEnter;
|
||||
//
|
||||
// /**
|
||||
// * 是否支付(0:未支付,1:已支付)
|
||||
// */
|
||||
// @ExcelProperty(value = "是否支付(0:未支付,1:已支付)")
|
||||
// private Integer isPayment;
|
||||
|
||||
} |
Loading…
Reference in new issue