WCS
dengjunjie
2024-10-14 901c64f294ee75784f3fec80b47ae6b77932fff3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.AGVInfo
{
    public class ConveyorLineDTO
    {
        /// <summary>
        /// AGV任务号
        /// </summary>
        public string TaskNum { get; set; }
        /// <summary>
        /// 站点编号
        /// </summary>
        public string Station { get; set; }
        /// <summary>
        /// 类型 1:请求放货;2:放货完成;3:请求取货;4:取货完成
        /// </summary>
        public int Type { get; set; }
        /// <summary>
        /// 托盘条形码
        /// </summary>
        public string TrayBarcode { get; set; }
    }
}