|
@@ -41,11 +41,13 @@ public class BizRecordExportResult {
|
|
|
private String carNumber;
|
|
|
|
|
|
/** 车牌号码 */
|
|
|
+ @ColumnWidth(20)
|
|
|
@HeadStyle(fillPatternType = FillPatternTypeEnum.NO_FILL)
|
|
|
@ExcelProperty({"过磅记录", "车牌号码"})
|
|
|
private String licensePlate;
|
|
|
|
|
|
/** 车牌颜色 */
|
|
|
+ @ColumnWidth(20)
|
|
|
@HeadStyle(fillPatternType = FillPatternTypeEnum.NO_FILL)
|
|
|
@ExcelProperty({"过磅记录", "车牌颜色"})
|
|
|
private String plateColor;
|
|
@@ -95,6 +97,12 @@ public class BizRecordExportResult {
|
|
|
@ExcelProperty({"过磅记录", "订单信息", "订单编号"})
|
|
|
private String orderNumber;
|
|
|
|
|
|
+ /** 客户名称 */
|
|
|
+ @ColumnWidth(20)
|
|
|
+ @HeadStyle(fillPatternType = FillPatternTypeEnum.NO_FILL)
|
|
|
+ @ExcelProperty({"过磅记录", "客户名称"})
|
|
|
+ private String customerName;
|
|
|
+
|
|
|
/** 货品名称 */
|
|
|
@ColumnWidth(20)
|
|
|
@HeadStyle(fillPatternType = FillPatternTypeEnum.NO_FILL)
|