zs
2025-05-07 ce86642feb81352ce43701fceda3ec59ce662905
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
using Microsoft.EntityFrameworkCore.Metadata.Internal;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace CMS.Plugin.HIAWms.Domain.WmsInOutStockOrder
{
    /// <summary>
    /// 出入库单据
    /// </summary>
    public class WmsInOutOrder
    {
        /// <summary>
        /// 单据编号
        /// </summary>
        public string OrderNo { get; set; }
 
        /// <summary>
        /// 物料名称
        /// </summary>
        public string? MaterialName { get; set; }
 
        /// <summary>
        /// 物料件号
        /// </summary>
        public string MaterialNo { get; set; }
 
        /// <summary>
        /// 关联计划编号
        /// </summary>
        [SugarColumn(ColumnName = "PlanNo", ColumnDescription = "关联计划编号", Length = 32)]
        public string? PlanNo { get; set; }
 
        /// <summary>
        /// 操作类型
        /// </summary>
        [SugarColumn(ColumnName = "StockType", ColumnDescription = "操作类型")]
        //public OperationType StockType { get; set; }
        public StockType StockType { get; set; }
 
        /// <summary>
        /// 容器编号
        /// </summary>
        [SugarColumn(ColumnName = "ContainerNo", ColumnDescription = "容器编号", Length = 32)]
        public string? ContainerNo { get; set; }
 
        /// <summary>
        /// 机型
        /// </summary>
        [SugarColumn(ColumnName = "MaterialModel", ColumnDescription = "机型", Length = 32)]
        public string? MaterialModel { get; set; }
 
        /// <summary>
        /// 下发数量
        /// </summary>
        [SugarColumn(ColumnName = "DistributeNumber", ColumnDescription = "下发数量")]
        public int? DistributeNumber { get; set; }
 
        /// <summary>
        /// 完成数量
        /// </summary>
        [SugarColumn(ColumnName = "CompleteNumber", ColumnDescription = "完成数量")]
        public int? CompleteNumber { get; set; }
 
        /// <summary>
        /// 异常数量
        /// </summary>
        [SugarColumn(ColumnName = "ExceptNumber", ColumnDescription = "异常数量")]
        public int? ExceptNumber { get; set; }
        /// <summary>
        /// 操作时间
        /// </summary>
        [SugarColumn(ColumnName = "OperateTime", ColumnDescription = "操作时间")]
        public DateTime? OperateTime { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(ColumnName = "Remark", ColumnDescription = "备注", Length = 500)]
        public string? Remark { get; set; }
 
    }
}