wangxinhui
22 小时以前 c6e8b600398de38b6684f5fa1eaaaade8562859b
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.Attributes;
 
namespace WIDESEA_DTO.MES
{
    /// <summary>
    /// MES领料自动叫料接收实体
    /// </summary>
    [ModelValidate]
    public class MESAutoIssueDTO
    {
        /// <summary>
        /// 出库来源明细ID
        /// </summary>
        [PropertyValidate("出库来源明细ID", NotNullAndEmpty = true)]
        public int OutDetailId { get; set; }
 
        /// <summary>
        /// 机台余料可用时长
        /// </summary>
        [PropertyValidate("机台余料可用时长", NotNullAndEmpty = true)]
        public int OddsTime { get; set; }
 
        /// <summary>
        /// 上料周转位余料数量
        /// </summary>
        [PropertyValidate("上料周转位余料数量", NotNullAndEmpty = true)]
        public decimal OddsQuantity { get; set; }
 
        /// <summary>
        /// 周转位置编号
        /// </summary>
        [PropertyValidate("周转位置编号", NotNullAndEmpty = true)]
        public string PointCode { get; set; }
 
        /// <summary>
        /// 周转位是否存在空托
        /// </summary>
        [PropertyValidate("周转位是否存在空托", NotNullAndEmpty = true)]
        public int IsEmptyPallet { get; set; }
    }
}