|
|
@@ -1,5 +1,6 @@
|
|
|
package com.dk.mdm.model.query.ivt;
|
|
|
|
|
|
+import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.dk.common.infrastructure.handler.StringListTypeHandler;
|
|
|
import com.dk.common.infrastructure.handler.TimestampTypeHandler;
|
|
|
@@ -193,6 +194,27 @@ public class InboundQuery extends PageInfo<InboundQuery>{
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
private LocalDate intoDateEnd;
|
|
|
|
|
|
+ /**
|
|
|
+ * 商品型号
|
|
|
+ */
|
|
|
+ @Excel(name = "商品型号")
|
|
|
+ @ApiModelProperty(value = "商品型号")
|
|
|
+ private String skuModel;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 商品编号
|
|
|
+ */
|
|
|
+ @Excel(name = "商品编号")
|
|
|
+ @ApiModelProperty(value = "商品编号")
|
|
|
+ private String skuCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 商品名称
|
|
|
+ */
|
|
|
+ @Excel(name = "商品名称")
|
|
|
+ @ApiModelProperty(value = "商品名称")
|
|
|
+ private String skuName;
|
|
|
+
|
|
|
|
|
|
|
|
|
|