wangxinhui
2025-09-26 9ae0890dd74771ba9edd44d4830e0de37f8d9938
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.Attributes;
 
namespace WIDESEA_DTO.ERP
{
    /// <summary>
    /// 生管排程接收实体
    /// </summary>
    public class SGOutOrderDTO
    {
        /// <summary>
        /// 主排程Id
        /// </summary>
        [PropertyValidate("主排程Id", NotNullAndEmpty = true)]
        public int BoardMpsId { get; set; }
 
        /// <summary>
        /// 排程明细ID
        /// </summary>
        [PropertyValidate("排程明细ID", NotNullAndEmpty = true)]
        public int BoardMpsDetailId { get; set; }
 
        /// <summary>
        /// 幅宽
        /// </summary>
        [PropertyValidate("幅宽", NotNullAndEmpty = true)]
        public decimal Width { get; set; }
 
        /// <summary>
        /// 需求长度
        /// </summary>
        [PropertyValidate("需求长度", NotNullAndEmpty = true)]
        public decimal XqLen { get; set; }
 
        /// <summary>
        /// 总用量
        /// </summary>
        [PropertyValidate("总用量", NotNullAndEmpty = true)]
        public decimal TotalUsage { get; set; }
 
        /// <summary>
        /// 物料来源ID(上游)
        /// </summary>
        [PropertyValidate("物料ID", NotNullAndEmpty = true)]
        public int MaterialId { get; set; }
 
        /// <summary>
        /// 物料编号
        /// </summary>
        [PropertyValidate("物料编号", NotNullAndEmpty = true)]
        public string MaterialNo { get; set; }
 
        /// <summary>
        /// 采购长度
        /// </summary>
        [PropertyValidate("采购长度", NotNullAndEmpty = true)]
        public decimal ProcurementLength { get; set; }
 
        /// <summary>
        /// 楞别
        /// </summary>
        [PropertyValidate("楞别", NotNullAndEmpty = true)]
        public string BoardFluteNo { get; set; }
 
        /// <summary>
        /// 机台位置
        /// </summary>
        [PropertyValidate("机台位置", NotNullAndEmpty = true)]
        public string MachineName { get; set; }
 
        /// <summary>
        /// 客户简称
        /// </summary>
        [PropertyValidate("客户简称", NotNullAndEmpty = true)]
        public string ShortName { get; set; }
 
        /// <summary>
        /// 总长
        /// </summary>
        [PropertyValidate("总长", NotNullAndEmpty = true)]
        public decimal TotalLenth { get; set; }
 
        /// <summary>
        /// 生产工单号(上游)
        /// </summary>
        [PropertyValidate("生产工单号", NotNullAndEmpty = true)]
        public string OrderId { get; set; }
    }
}