Browse Source

尺码信息表

huxy 2 years ago
parent
commit
c8f0b57215

+ 15 - 0
jeecg-boot-module-system/src/main/java/org/jeecg/modules/spapl/entity/SizeTable.java

@@ -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;
 }