dengjunjie
2024-10-30 680ccbedf08839143215f40dea5273dc2819100c
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
29
30
31
32
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.WMSInfo
{
    public class ConveyorLineDTO
    {
        /// <summary>
        /// 任务号
        /// </summary>
        public int TaskNum { get; set; }
        /// <summary>
        /// 托盘号
        /// </summary>
        public string Barcode { get; set; }
        /// <summary>
        /// 编号
        /// </summary>
        public string stationCode { get; set; }
        /// <summary>
        /// 重量
        /// </summary>
        public ushort Weight { get; set; }
        /// <summary>
        /// 货物规格
        /// </summary>
        public int Spec { get; set; }
    }
}