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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using Admin.NET.Core;
 
namespace Admin.NET.Application
{
    /// <summary>
    /// 库存信息(熟化库)输出参数
    /// </summary>
    public class MaterialStockDto
    {
        /// <summary>
        /// 库区名称
        /// </summary>
        public string WmsAreaAreaName { get; set; }
        
        /// <summary>
        /// 物料编号
        /// </summary>
        public string MaterialNo { get; set; }
        
        /// <summary>
        /// 物料类型
        /// </summary>
        public MaterialType MaterialType { get; set; }
        
        /// <summary>
        /// 物料批次
        /// </summary>
        public string MaterialBatch { get; set; }
        
        /// <summary>
        /// 物料名称
        /// </summary>
        public string MaterialName { get; set; }
        
        /// <summary>
        /// 物料规格
        /// </summary>
        public string MaterialSpec { get; set; }
 
        /// <summary>
        /// 长    
        /// </summary>
        public int Long { get; set; }
 
        /// <summary>
        /// 宽    
        /// </summary>
        public int Wide { get; set; }
 
        /// <summary>
        /// 高    
        /// </summary>
        public int High { get; set; }
 
        /// <summary>
        /// 物料密度
        /// </summary>
        public string MaterialDensity { get; set; }
        
        /// <summary>
        /// 检验方式
        /// </summary>
        public MaterialInspection InspectionMethod { get; set; }
        
        /// <summary>
        /// 单位类别
        /// </summary>
        public UnitType UnitType { get; set; }
        
        /// <summary>
        /// 单位编号
        /// </summary>
        public UnitNoType UnitNo { get; set; }
        
        /// <summary>
        /// 库存数
        /// </summary>
        public decimal StockNumber { get; set; }
        
        /// <summary>
        /// 库位编码
        /// </summary>
        public string PlaceCode { get; set; }
        
        /// <summary>
        /// 托盘编码
        /// </summary>
        public string ContainerCode { get; set; }
        
        /// <summary>
        /// 库区ID
        /// </summary>
        public long AreaId { get; set; }
        
        /// <summary>
        /// Id主键
        /// </summary>
        public long Id { get; set; }
    }
}