#
zjj
6 天以前 161cdb87ddb09d99ef5af4b55e7e7b18c5084615
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/Wave.java
@@ -3,6 +3,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;
@@ -43,6 +44,9 @@
    @ApiModelProperty(value= "波次号")
    private String code;
    @ApiModelProperty("执行数量")
    private Double workQty;
    /**
     * 波次类型 0: 手动  1: 自动  
     */
@@ -67,6 +71,9 @@
    @ApiModelProperty(value= "已完成数量")
    private Double qty;
    @ApiModelProperty("目标位置")
    private String targSite;
    /**
     * 单据数量
     */
@@ -90,6 +97,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;
    /**
@@ -103,6 +111,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;
    /**
@@ -115,7 +124,6 @@
     * 是否删除 1: 是  0: 否  
     */
    @ApiModelProperty(value= "是否删除 1: 是  0: 否  ")
    @TableLogic
    private Integer deleted;
    /**