Verification.java 467 Bytes
package com.huaheng.pc.tool.verify.domain;

import lombok.Data;

/**
 * @author lty
 */

@Data
public class Verification {
    /**
     *本地库位
     */
    private String locationCode;

    /**
     *本地容器
     */
    private String containerCode;

    /**
     *WCS库位
     */
    private String wcsLocationCode;

    /**
     *WCS容器
     */
    private String wcsContainerCode;

    /**
     *异常原因
     */
    private String reason;


}