自动化立体仓库 - WMS系统
#
zjj
6 天以前 4b6e6d95ae6fbbccc4351db366b99fa05288877f
src/main/java/com/zy/asrs/entity/OrderDetl.java
@@ -129,9 +129,9 @@
    private String unit;
    /**
     * 单价
     * 已上报数量
     */
    @ApiModelProperty(value= "单价")
    @ApiModelProperty(value= "已上报数量")
    private Double price;
    /**
@@ -193,9 +193,9 @@
    private Double weight;
    /**
     * 长度
     * 已上报数量
     */
    @ApiModelProperty(value= "长度")
    @ApiModelProperty(value= "已上报数量")
    private Double length;
    /**
@@ -225,9 +225,9 @@
    private String suppCode;
    /**
     * 是否批次 1: 是  0: 否
     * 行ID
     */
    @ApiModelProperty(value= "是否批次 1: 是  0: 否  ")
    @ApiModelProperty(value= "行ID")
    @TableField("be_batch")
    private Integer beBatch;
@@ -304,6 +304,20 @@
     */
    @ApiModelProperty(value= "备注")
    private String memo;
    /**
     * 源仓库
     */
    @ApiModelProperty(value= "源仓库")
    @TableField("source_loc_name")
    private String sourceLocName;
    /**
     * 目标仓库
     */
    @ApiModelProperty(value= "目标仓库")
    @TableField("target_loc_name")
    private String targetLocName;
    /**
     * 拥有者
@@ -489,6 +503,13 @@
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.createTime);
    }
    public String getTime$(){
        if (Cools.isEmpty(this.createTime)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd").format(this.createTime);
    }
    public String getUpdateBy$(){
        UserService service = SpringUtils.getBean(UserService.class);
        User user = service.selectById(this.updateBy);