wangxinhui
2 天以前 011ca316e6ec2ed93e31c45a9ebd9d3c66664871
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.PackInfo
{
    /// <summary>
    /// MES成品入库接收实体
    /// </summary>
    public class MESProPackInfoDTO
    {
        /// <summary>
        /// 物料条码
        /// </summary>
        public string BarCode { get; set; }
 
        /// <summary>
        /// 物料编码
        /// </summary
        public string MaterialCode { get; set; }
 
        /// <summary>
        /// 工单号
        /// </summary>
        public string ProductOrderNo { get; set; }
 
        /// <summary>
        /// 加工中心编码(机台)
        /// </summary>
        public string MakeCode { get; set; }
 
        /// <summary>
        /// 箱长
        /// </summary>
        public decimal Length { get; set; }
 
        /// <summary>
        /// 箱宽
        /// </summary>
        public decimal Width { get; set; }
 
        /// <summary>
        /// 箱高
        /// </summary>
        public decimal Height { get; set; }
 
        /// <summary>
        /// 状态
        /// </summary>
        public int MESProInStatus { get; set; }
    }
}