|
|
@@ -76,17 +76,17 @@ public class JDOrderDTO implements Serializable {
|
|
|
private String goodsName;
|
|
|
|
|
|
/** 物品重量 */
|
|
|
- @ExcelProperty(value = "物品重量", order = 7)
|
|
|
+ @ExcelProperty(value = "物品重量(kg)", order = 7)
|
|
|
@ColumnWidth(15)
|
|
|
private BigDecimal goodsWeight;
|
|
|
|
|
|
/** 物品体积 */
|
|
|
- @ExcelProperty(value = "物品体积", order = 8)
|
|
|
+ @ExcelProperty(value = "物品体积(m³)", order = 8)
|
|
|
@ColumnWidth(15)
|
|
|
private BigDecimal goodsVolume;
|
|
|
|
|
|
/** 物品数量 */
|
|
|
- @ExcelProperty(value = "物品数量", order = 9)
|
|
|
+ @ExcelProperty(value = "物品数量(件)", order = 9)
|
|
|
@ColumnWidth(15)
|
|
|
private Long goodsQty;
|
|
|
|