skyouc
6 天以前 c8fde8647b48e7c7d9b3beb6e8c39459f07c9eb2
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/WaveItem.java
@@ -5,6 +5,7 @@
import java.text.SimpleDateFormat;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.experimental.Accessors;
import org.springframework.format.annotation.DateTimeFormat;
import java.text.SimpleDateFormat;
@@ -141,7 +142,6 @@
     * 是否删除 1: 是  0: 否  
     */
    @ApiModelProperty(value= "是否删除 1: 是  0: 否  ")
    @TableLogic
    private Integer deleted;
    /**
@@ -149,6 +149,7 @@
     */
    @ApiModelProperty(value= "添加时间")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private Date createTime;
    /**
@@ -162,6 +163,7 @@
     */
    @ApiModelProperty(value= "修改时间")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
    private Date updateTime;
    /**
@@ -170,11 +172,27 @@
    @ApiModelProperty(value= "修改人员")
    private Long updateBy;
    /**
     * 目标库位
     */
    @ApiModelProperty("目标库位")
    @TableField(exist = false)
    private String stockLocs;
    /**
     * 库存数量
     */
    @ApiModelProperty("库存数量")
    @TableField(exist = false)
    private Double stockQty;
    /***
     * 是否全拖出库
     */
    @TableField(exist = false)
    private Short flagAll;
    /**
     * 备注
     */
    @ApiModelProperty(value= "备注")