自动化立体仓库 - WMS系统
*
L
17 小时以前 25c4d88c377055a726d8f79c9e11e2484b3c3442
src/main/java/com/zy/asrs/entity/BasArmMast.java
@@ -103,7 +103,7 @@
     * 时间戳
     */
    @ApiModelProperty(value= "时间戳")
    @TableId(value = "createTime", type = IdType.INPUT)
    @TableField("create_time")
    private Long createTime;
    /**
@@ -124,11 +124,12 @@
    public BasArmMast(TaskArmReportParam param) {
        this.orderNo = param.getOrderNo();
        this.sku = param.getSku();
        this.matnr = param.getSku();
        this.po = param.getPo();
        this.upc = param.getUpc();
        this.supplier = param.getSupplier();
        this.createTime = param.getCreateTime();
        this.sortingLine = Integer.getInteger(param.getStaNo());
        this.sortingLine = Integer.parseInt(param.getStaNo());;
    }
    public BasArmMast(Integer armNo,Integer armDirection,Integer staNo,Integer sortingLine,Integer bindingTags,Long priority,Integer status,String matnr,String sku,String po,String upc,String supplier,String orderNo,Integer ctns,Long createTime,Long armError,String armMsg) {