|
@@ -2,20 +2,35 @@ package org.jeecg.modules.spapl.entity;
|
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
+import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
|
|
|
import java.awt.*;
|
|
|
|
|
|
|
|
|
@Data
|
|
|
public class SizeTable {
|
|
|
+
|
|
|
+ @Excel(name = "尺码", width = 15)
|
|
|
@ApiModelProperty(value = "尺码")
|
|
|
private String size;
|
|
|
+
|
|
|
+ @Excel(name = "序号", width = 15)
|
|
|
@ApiModelProperty(value = "序号")
|
|
|
private int num;
|
|
|
+
|
|
|
+ @Excel(name = "比例", width = 15)
|
|
|
@ApiModelProperty(value = "比例")
|
|
|
private int proportion;
|
|
|
+
|
|
|
+ @Excel(name = "数量", width = 15)
|
|
|
@ApiModelProperty(value = "数量")
|
|
|
private java.math.BigDecimal quantity;
|
|
|
+
|
|
|
+ @Excel(name = "别名", width = 15)
|
|
|
@ApiModelProperty(value = "别名")
|
|
|
private String alias;
|
|
|
+
|
|
|
+ @Excel(name = "子表id", width = 15)
|
|
|
+ @ApiModelProperty(value = "子表id")
|
|
|
+ private String itemId;
|
|
|
}
|