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
using Admin.NET.Core;
 
namespace Admin.NET.Application
{
    /// <summary>
    /// 库区信息输出参数
    /// </summary>
    public class WmsAreaOutput
    {
        /// <summary>
        /// 名称
        /// </summary>
        public string AreaName { get; set; }
 
        /// <summary>
        /// 描述
        /// </summary>
        public string AreaDesc { get; set; }
 
        /// <summary>
        /// 状态
        /// </summary>
        public CommonStatus AreaStatus { get; set; }
 
        /// <summary>
        /// 分类
        /// </summary>
        public AreaType AreaType { get; set; }
 
        /// <summary>
        /// 是否为钢平台
        /// </summary>
        public bool IsSteel { get; set; }
 
        /// <summary>
        /// 所属车间
        /// </summary>
        public LesWorkShopType WorkShopType { get; set; }
 
        /// <summary>
        /// Id主键
        /// </summary>
        public long Id { get; set; }
 
        /// <summary>
        /// 签核状态
        /// </summary>
        public IssueState IssueState { get; set; }
    }
}