dengjunjie
2025-05-26 d845312bb27972771b566054a906cc25af83e209
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
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>
    [ModelValidate]
    public class ErpProductSpecifyVerDTO
    {
        /// <summary>
        /// 订单号
        /// </summary>
        [PropertyValidate("订单号", NotNullAndEmpty = true)]
        public string OrderNo { get; set; }
 
        /// <summary>
        /// 明细行号
        /// </summary>
        [PropertyValidate("明细行号", NotNullAndEmpty = true)]
        public int RowId { get; set; }
 
        /// <summary>
        /// 产品编码
        /// </summary>
        [PropertyValidate("产品编码", NotNullAndEmpty = true)]
        public string PCode { get; set; }
 
        /// <summary>
        /// 产品版本
        /// </summary>
        [PropertyValidate("产品版本", NotNullAndEmpty = true)]
        public string PVer { get; set; }
 
        /// <summary>
        /// 产品批次
        /// </summary>
        [PropertyValidate("产品批次", NotNullAndEmpty = true)]
        public string PLot { get; set; }
 
        /// <summary>
        /// 产品周期
        /// </summary>
        [PropertyValidate("产品周期")]
        public string DateCode { get; set; }
 
        /// <summary>
        /// 仓库类型
        /// HA72=尾数仓、HA71=成品仓、HA73=研发仓
        /// </summary>
        [PropertyValidate("仓库类型", NotNullAndEmpty = true)]
        public string WaType { get; set; }
 
        /// <summary>
        /// 合格PCS数
        /// </summary>
        [PropertyValidate("合格PCS数", NotNullAndEmpty = true)]
        public float QtyPcs { get; set; }
 
        /// <summary>
        /// 指派版本号
        /// </summary>
        [PropertyValidate("指派版本号",NotNullAndEmpty =true)]
        public string Ver { get; set; }
    }
}