RobotDomain.java 1.46 KB
package com.huaheng.api.acs.domain;

import com.huaheng.common.exception.service.ServiceException;
import com.huaheng.common.utils.StringUtils;
import lombok.Data;

import java.math.BigDecimal;

/***
 * 商片二楼机械人码垛入参
 *
 */
@Data
public class RobotDomain {
    /**
     * 容器
     */
    private String containerCode;
    /**
     * 位置
     */
    private Integer position;
    /**
     * 1 大托盘
     * 2 小托盘
     * 行数
     */
    private Integer palletType;
    /**
     * 垛型 类型分为
     * 101-112(小箱子)
     *          * * * *
     *          * * * *
     *          * * * *
     * 201-209(大箱子)
     *          * * *
     *          * * *
     *          * * *
     * 301-309(小箱子)
     *          * * *
     *          * * *
     *          * * *
     */
    private Integer stackType;
    /**
     * 子托盘高度
     */
    private Integer height;
    /**
     * 结束标志
     */
    private Integer finish;
    /**
     * 条码
     */
    private String allCode;

    /**
     * boxType 1为小箱子 2为大箱子
     */
    private Integer boxType;
    /**
     * stackTypeTotal 码垛总数量
     */
    private Integer stackTypeTotal;
    /**
     * 物料编码
     */
    private String materialCode;
    /**
     * 物料数量
     */
    private BigDecimal qty;
    /**
     * 物料批次
     */
    private String lot;

    /**
     * sap站台号
     */
    private String sapPort;

}