dengjunjie
2024-12-16 3d25ef8353e593533ade370481a49209dc603785
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.Attributes;
 
namespace WIDESEA_DTO.Basic
{
    [ModelValidate]
    public class MaterielInfo
    {
        /// <summary>
        /// 
        /// </summary>
        public string From { get; set; }
        /// <summary>
        /// 
        /// </summary>
        public string DateTime { get; set; }
        /// <summary>
        /// 
        /// </summary>
        [PropertyValidate("物料列表", NotNullAndEmpty = true)]
        public MaterielInfoDTO Content { get; set; }
    }
    [ModelValidate]
    public class MaterielInfoDTO
    {
        public string Code { get; set; }
 
        public string Name { get; set; }
 
        public string StandType { get; set; }
 
        public int ItemType { get; set; }
 
        public int ItemSourceType { get; set; }
 
        public string Unit { get; set; }
 
        public string MaterialVersion { get; set; }
 
        public float Size { get; set; }
 
        public float Length { get; set; }
 
        public float Thickness { get; set; }
 
        public float Wide { get; set; }
 
        public string Model { get; set; }
 
        public int State { get; set; }
 
        public string InvOrgId { get; set; }
 
        public int OperateType { get; set; }
 
        public int IsCheck { get; set; }
 
        public int WaId { get; set; }
    }
}