1
schangxiang@126.com
2024-08-30 120e7a933c675b5587db9db17bb202075cacee00
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
using iWare.Wms.Core.Util.LowCode.Dto;
using System;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using iWare.Wms.Core;
 
namespace iWare.Wms.Application
{
    /// <summary>
    /// 工件出库信息输出参数
    /// </summary>
    public class WorkPieceOutboundOutput
    {
 
        /// <summary>
        /// 小车码
        /// </summary>
        [Comment("小车码")]
        [MaxLength(32)]
        public string CarNo { get; set; }
 
        /// <summary>
        /// 阶段
        /// </summary>
        [Comment("阶段")]
        public PieceUnLineStage? UnLineStage { get; set; }
 
        /// <summary>
        /// 阶段名称
        /// </summary>
        [Comment("阶段名称")]
        public String UnLineStageName { get; set; }
 
 
 
        #region 下线
 
        /// <summary>
        /// 下线时间
        /// </summary>
        [Comment("下线时间")]
        public DateTime? WorkPieceUnLineTime { get; set; }
 
 
        /// <summary>
        /// 下线人Id
        /// </summary>
        [Comment("下线人Id")]
        public long? WorkPieceUnLineUserId { get; set; }
 
        /// <summary>
        /// 下线人名称
        /// </summary>
        [Comment("下线人名称")]
        [MaxLength(32)]
        public string WorkPieceUnLineUserName { get; set; }
 
        #endregion
 
        /// <summary>
        /// 工件号
        /// </summary>
        public string WorkPieceID { get; set; }
        
        /// <summary>
        /// OP80打码
        /// </summary>
        public string OP80NewCode { get; set; }
        
        /// <summary>
        /// 出库时间
        /// </summary>
        public DateTime WorkPieceOutboundTime { get; set; }
 
        /// <summary>
        /// 出库人Id
        /// </summary>
        public long WorkPieceOutboundUserId { get; set; }
 
        /// <summary>
        /// 出库人名称
        /// </summary>
        public string WorkPieceOutboundUserName { get; set; }
        
        /// <summary>
        /// Id主键
        /// </summary>
        public long Id { get; set; }
        
    }
}