|
@@ -9,6 +9,7 @@ import com.dk.common.infrastructure.handler.TimestampTypeHandler;
|
|
|
import com.dk.common.infrastructure.handler.UuidTypeHandler;
|
|
import com.dk.common.infrastructure.handler.UuidTypeHandler;
|
|
|
import com.dk.common.model.pojo.PageInfo;
|
|
import com.dk.common.model.pojo.PageInfo;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.AllArgsConstructor;
|
|
@@ -18,6 +19,7 @@ import lombok.NoArgsConstructor;
|
|
|
import lombok.experimental.Accessors;
|
|
import lombok.experimental.Accessors;
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
|
import java.io.Serializable;
|
|
|
|
|
+import java.time.LocalDate;
|
|
|
import java.time.LocalDateTime;
|
|
import java.time.LocalDateTime;
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
|
@@ -61,7 +63,54 @@ public class TransferQuery extends PageInfo<TransferQuery> implements Serializab
|
|
|
@ApiModelProperty(value = "调整单号")
|
|
@ApiModelProperty(value = "调整单号")
|
|
|
private String transferNo;
|
|
private String transferNo;
|
|
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "入库时间开始")
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
|
|
+ private LocalDate makeTimeStart;
|
|
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "入库时间结束")
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
|
|
+ private LocalDate makeTimeEnd;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "调整日期开始")
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
|
|
+ private LocalDate transferDateWStart;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "调整日期结束")
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
|
|
|
|
+ private LocalDate transferDateWEnd;
|
|
|
|
|
+
|
|
|
|
|
+ private String searchText;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 员工名称
|
|
|
|
|
+ */
|
|
|
|
|
+ @Excel(name = "员工名称")
|
|
|
|
|
+ @ApiModelProperty(value = "员工名称")
|
|
|
|
|
+ private String staffName;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "部门名称")
|
|
|
|
|
+ @TableField(exist = false)
|
|
|
|
|
+ private String orgName;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 原仓库名称
|
|
|
|
|
+ */
|
|
|
|
|
+ @Excel(name = "原仓库名称")
|
|
|
|
|
+ @ApiModelProperty(value = "原仓库名称")
|
|
|
|
|
+ @JsonProperty(value = "oWhName")
|
|
|
|
|
+ private String oWhName;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 仓库名称
|
|
|
|
|
+ */
|
|
|
|
|
+ @Excel(name = "仓库名称")
|
|
|
|
|
+ @ApiModelProperty(value = "仓库名称")
|
|
|
|
|
+ @JsonProperty(value = "whName")
|
|
|
|
|
+ private String whName;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "调整类型")
|
|
|
|
|
+ private List<String> transferTypeList;
|
|
|
/**
|
|
/**
|
|
|
* 调整类型 (【系统字典】调整类型(库区调整、批号调整))
|
|
* 调整类型 (【系统字典】调整类型(库区调整、批号调整))
|
|
|
*/
|
|
*/
|