|
|
@@ -4,6 +4,7 @@ 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 javax.validation.constraints.NotBlank;
|
|
|
@@ -64,7 +65,13 @@ public class GoodsInfoExcel implements Serializable {
|
|
|
|
|
|
@ExcelProperty("积分倍数")
|
|
|
private String integralMultiples;
|
|
|
-
|
|
|
+ @ExcelProperty("计量单位")
|
|
|
+ private String unit;
|
|
|
+ /**
|
|
|
+ * 尺寸
|
|
|
+ */
|
|
|
+ @ExcelProperty(value = "尺寸")
|
|
|
+ private String size;
|
|
|
|
|
|
|
|
|
|