222
schangxiang@126.com
2024-12-18 4a68e02a9dbffe0b215ceb1d9758ccb17329e523
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
using Admin.NET.Application.Entity;
using Admin.NET.Core;
using System.ComponentModel.DataAnnotations;
 
namespace Admin.NET.Application;
 
/// <summary>
/// 判断齐套输出参数
/// </summary>
public class ValidateQiTaoOutput
{
 
    /// <summary>
    /// 是否是新订单
    /// </summary>
    public virtual bool IsNewOrder { get; set; }
 
 
    /// <summary>
    /// 齐套结果
    /// </summary>
    public virtual string QiTaoReuslt { get; set; }
 
 
    [Required]
    [SugarColumn(ColumnName = "PackageCode", ColumnDescription = "包装号", Length = 50)]
    public string PackageCode { get; set; }
 
    /// <summary>
    /// 生产单号
    /// </summary>
    [SugarColumn(ColumnName = "Info5", ColumnDescription = "生产单号", Length = 60)]
    public string? Info5 { get; set; }
 
    [Required]
    [SugarColumn(ColumnName = "PlanNo", ColumnDescription = "批次号", Length = 50)]
    public string PlanNo { get; set; }
 
    [Required]
    [SugarColumn(ColumnName = "OrderId", ColumnDescription = "订单号", Length = 50)]
    public string OrderId { get; set; }
 
 
 
 
    #region wms新增字段 【Editby shaocx,2024-11-20】
 
    /// <summary>
    /// 所在区域
    /// </summary>
    [SugarColumn(ColumnName = "AreaCode", ColumnDescription = "所在区域")]
    public AreaCodeEnum? AreaCode { get; set; } = AreaCodeEnum.无区域;
 
 
    /// <summary>
    /// 板料状态
    /// </summary>
    [Required]
    [SugarColumn(ColumnName = "UpiStatus", ColumnDescription = "板料状态")]
    public UpiStatusEnum UpiStatus { get; set; } = UpiStatusEnum.初始;
 
    #endregion
 
 
 
    [SugarColumn(ColumnName = "Info1", ColumnDescription = "纸箱长", Length = 50)]
    public float? Info1 { get; set; }
 
    [SugarColumn(ColumnName = "Info2", ColumnDescription = "纸箱宽", Length = 50)]
    public float? Info2 { get; set; }
 
    [SugarColumn(ColumnName = "Info3", ColumnDescription = "纸箱高", Length = 50)]
    public float? Info3 { get; set; }
    /// <summary>
    /// 销售合同单号
    /// </summary>
    [SugarColumn(ColumnName = "Info4", ColumnDescription = "销售合同单号", Length = 60)]
    public string? Info4 { get; set; }
 
 
 
    /// <summary>
    /// 第几包
    /// </summary>
    [SugarColumn(ColumnName = "Info6", ColumnDescription = "第几包", Length = 60)]
    public string? Info6 { get; set; }
 
    /// <summary>
    /// 经销店名称
    /// </summary>
    [SugarColumn(ColumnName = "Info7", ColumnDescription = "经销店名称", Length = 60)]
    public string? Info7 { get; set; }
 
    /// <summary>
    /// 产品名称
    /// </summary>
    [SugarColumn(ColumnName = "Info8", ColumnDescription = "产品名称", Length = 60)]
    public string? Info8 { get; set; }
 
    /// <summary>
    /// 客户名称
    /// </summary>
    [SugarColumn(ColumnName = "Info10", ColumnDescription = "客户名称", Length = 60)]
    public string? Info10 { get; set; }
 
    /// <summary>
    /// 自提or发货
    /// </summary>
    [SugarColumn(ColumnName = "Info11", ColumnDescription = "自提or发货", Length = 60)]
    public string? Info11 { get; set; }
 
    /// <summary>
    /// 包装部件总数量
    /// </summary>
    [SugarColumn(ColumnName = "Info12", ColumnDescription = "包装部件总数量", Length = 60)]
    public string? Info12 { get; set; }
 
    /// <summary>
    /// 包装面积
    /// </summary>
    [SugarColumn(ColumnName = "Info13", ColumnDescription = "包装面积", Length = 60)]
    public string? Info13 { get; set; }
 
}