|
|
@@ -4,9 +4,11 @@ import com.alibaba.excel.annotation.ExcelProperty;
|
|
|
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;
|
|
|
|
|
|
@Data
|
|
|
@ColumnWidth(25)
|
|
|
@@ -29,5 +31,15 @@ public class SalesItemExcel implements Serializable {
|
|
|
|
|
|
@ExcelProperty("特价")
|
|
|
private String specialOffer;
|
|
|
+ /**
|
|
|
+ * 箱体积
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "箱体积")
|
|
|
+ private BigDecimal cntrVolumn;
|
|
|
+ /**
|
|
|
+ * 箱重量
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "箱重量")
|
|
|
+ private BigDecimal cartonWeight;
|
|
|
|
|
|
}
|