|
|
@@ -1,7 +1,9 @@
|
|
|
package com.dk.mdm.model.response.ivt;
|
|
|
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.dk.common.infrastructure.annotaiton.ExportTitle;
|
|
|
import com.dk.common.infrastructure.handler.TimestampTypeHandler;
|
|
|
@@ -52,6 +54,12 @@ public class InboundItemResponse extends PageInfo<InboundItemResponse> implement
|
|
|
@ApiModelProperty(value = "入库ID")
|
|
|
@TableField(typeHandler = UuidTypeHandler.class)
|
|
|
private String intoId;
|
|
|
+ /**
|
|
|
+ * 商品规格
|
|
|
+ */
|
|
|
+ @Excel(name = "商品规格")
|
|
|
+ @ApiModelProperty(value = "商品规格")
|
|
|
+ private String skuSpec;
|
|
|
|
|
|
|
|
|
/**
|
|
|
@@ -341,8 +349,30 @@ public class InboundItemResponse extends PageInfo<InboundItemResponse> implement
|
|
|
* 关联属性 + 查询条件
|
|
|
* @TableField(exist = false)
|
|
|
*/
|
|
|
+ /**
|
|
|
+ * 仓库ID
|
|
|
+ */
|
|
|
+ @TableId(value = "wh_id", type = IdType.AUTO)
|
|
|
+ @ApiModelProperty(value = "仓库ID")
|
|
|
+ @TableField(typeHandler = UuidTypeHandler.class)
|
|
|
+ private String whId;
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 仓库编号
|
|
|
+ */
|
|
|
+ @Excel(name = "仓库编号")
|
|
|
+ @ApiModelProperty(value = "仓库编号")
|
|
|
+ private String whCode;
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
+ * 仓库名称
|
|
|
+ */
|
|
|
+ @Excel(name = "仓库名称")
|
|
|
+ @ApiModelProperty(value = "仓库名称")
|
|
|
+ private String whName;
|
|
|
+
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
}
|