RobotView.java 810 Bytes
package com.huaheng.api.wcs.domain;

import lombok.Data;

/***
 * @author tongzonghao
 */
@Data
public class RobotView {

    private String taskNo;
    private String area;
    private String containerCode;
    private String port;
    /**
     * boxType : 0:小型货物垛型
     * boxType : 1:大型货物垛型
     */
    private Integer stackType;
    /**
     * operator : 0:取
     * operator : 1:放
     */
    private int operator;
    /**
     * 来源托盘,起点 1左,2中,3右
     */
    private int formPallet;
    /**
     * 来源位置
     */
    private int formPosition;
    /**
     * 去向托盘,终点 1左,2中,3右
     */
    private int toPallet;
    /**
     * 去向位置
     */
    private int toPosition;

    private int state;

    private int totalQty;

}