schangxiang@126.com
2024-04-23 f47411fb53aeee0c7bd514cbc841f9030349f448
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
using Admin.NET.Core;
 
namespace Admin.NET.Application
{
    /// <summary>
    /// 物料信息
    /// </summary>
    public class WmsMaterialDto
    {
        /// <summary>
        /// 物料名称
        /// </summary>
        public string MaterialName { get; set; }
        
        /// <summary>
        /// 物料编号
        /// </summary>
        public string MaterialNo { get; set; }
        
        /// <summary>
        /// 物料批次
        /// </summary>
        public string MaterialBatch { get; set; }
        
        /// <summary>
        /// 描述
        /// </summary>
        public string Description { get; set; }
        
        /// <summary>
        /// 物料类别
        /// </summary>
        public MaterialType? MaterialType { get; set; }
        
        /// <summary>
        /// 物料规格
        /// </summary>
        public string MaterialSpec { get; set; }
        
        /// <summary>
        /// 物料密度
        /// </summary>
        public string MaterialDensity { get; set; }
        
        /// <summary>
        /// 库区参数
        /// </summary>
        public string AreaNameParameter { get; set; }
        
        /// <summary>
        /// 工作区参数
        /// </summary>
        public string StationNameParameter { get; set; }
        
        /// <summary>
        /// 熟化时间
        /// </summary>
        public int MaturationTime { get; set; }
        
        /// <summary>
        /// 是否需要熟化
        /// </summary>
        public bool? IsMaturation { get; set; }
        
        /// <summary>
        /// Id主键
        /// </summary>
        public long Id { get; set; }
    }
}