xiaojiao
14 小时以前 0071cf57931792eb2357a1e67a42bcaa9603c567
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
33
34
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.PDA
{
    /// <summary>
    /// 容器绑定DTO
    /// </summary>
    public class ContainerbindingDTO
    {
        /// <summary>
        /// 载具编号
        /// </summary>
        public string VehicleNumber {  get; set; }
        /// <summary>
        /// 零件编号
        /// </summary>
        public string materSn {  get; set; }
        /// <summary>
        /// 当前点位
        /// </summary>
        public string Position {  get; set; }
    }
    /// <summary>
    /// 容器解绑DTO
    /// </summary>
    public class ContainerUnbindingDTO
    {
 
    }
}