Files
scrq-hd/RuoYi-Vue/.svn/pristine/09/09a8d46a7bed7631b28b2b61bb040f3c066752ee.svn-base
2025-07-03 10:34:04 +08:00

29 lines
693 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.ruoyi.wms.vo;
import lombok.Data;
/**
* @Verasion:1.0
* @Author:DZY
* @Date:2023/6/26
**/
@Data
public class AgvRequestVo {
//搬运类型
public Integer type;
//容器编码
public String ContainerCode;
//起始库位
public String fromLocationCode;
//目标库位
public String toLocationCode;
//请求类型 0:呼叫空箱 1请求空箱 2入水测 3出水测 4送待检 5送检验 6回待检 7送抽检 8送成品库 9出成品库
public Integer requestType;
//请求箱数
public Integer boxNumber;
//生产单号
public String productionTask;
//??
public String toStationCode;
}