自动化立体仓库 - WMS系统
*
L
昨天 fa35f658190d4d929591c5e93417373be0ded91e
src/main/java/com/zy/asrs/entity/BasArmMast.java
@@ -20,13 +20,13 @@
     * ID
     */
    @ApiModelProperty(value= "ID")
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
     * 机械臂编号
     */
    @ApiModelProperty(value= "机械臂编号")
    @TableId(value = "arm_no", type = IdType.INPUT)
    @TableField("arm_no")
    private Integer armNo;
@@ -48,7 +48,6 @@
     * 起点
     */
    @ApiModelProperty(value= "起点")
    @TableId(value = "sorting_line", type = IdType.INPUT)
    @TableField("sorting_line")
    private Integer sortingLine;
@@ -57,7 +56,7 @@
     */
    @ApiModelProperty(value= "绑定标记")
    @TableField("binding_tags")
    private Integer bindingTags;
    private Long bindingTags;
    /**
     * 优先级
@@ -103,7 +102,7 @@
     * 时间戳
     */
    @ApiModelProperty(value= "时间戳")
    @TableId(value = "createTime", type = IdType.INPUT)
    @TableField("create_time")
    private Long createTime;
    /**
@@ -124,14 +123,16 @@
    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.bindingTags = param.getBindingTags();
        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) {
    public BasArmMast(Integer armNo,Integer armDirection,Integer staNo,Integer sortingLine,Long 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) {
        this.armNo = armNo;
        this.armDirection = armDirection;
        this.staNo = staNo;