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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using Admin.NET.Core;
 
namespace Admin.NET.Application
{
    /// <summary>
    /// 物料信息输出参数
    /// </summary>
    public class WmsMaterialOutput
    {
        /// <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 MaterialUnit { get; set; }
        /// <summary>
        /// 库区Ids
        /// </summary>
        public string AreaIds { get; set; }
 
        /// <summary>
        /// 库区参数
        /// </summary>
        public string AreaNameParameter { get; set; }
 
        /// <summary>
        /// 工作区Ids
        /// </summary>
        public string StationIds { 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; }
 
        //1217
 
        /// <summary>
        /// 检验方式;数据字典
        /// </summary>
 
        public MaterialInspection InspectionMethod { get; set; }
        /// <summary>
        /// 安全存量
        /// </summary>
        public decimal Safeqty { get; set; }
 
        /// <summary>
        /// 最大存量
        /// </summary>
 
        public decimal MaxImumqty { get; set; }
 
        /// <summary>
        /// 最小库龄
        /// </summary>
 
        public decimal MinstorageAge { get; set; }
 
        /// <summary>
        /// 最大库龄
        /// </summary>
 
        public decimal MaxstorageAge { get; set; }
 
       
 
 
    }
 
    /// <summary>
    /// 库区下拉框输出参数
    /// </summary>
    public class AreaListOutput
    {
        /// <summary>
        /// 所在库区Id
        /// </summary>
        public string AreaId { get; set; }
 
        /// <summary>
        /// 库区名称
        /// </summary>
        public string AreaName { get; set; }
    }
 
    /// <summary>
    /// 工作区(工位)下拉框输出参数
    /// </summary>
    public class StationListOutput
    {
        /// <summary>
        /// 站点Id
        /// </summary>
        public string StationId { get; set; }
 
        /// <summary>
        /// 站点名称
        /// </summary>
        public string StationName { get; set; }
    }
}