schangxiang@126.com
2025-03-27 5b5429a616f4d6637c3ddd4b2476f4d563f19585
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
using Admin.NET.Core;
using Admin.NET.Core.Enum;
 
namespace Admin.NET.Application.Entity;
 
/// <summary>
/// 推送mes裁纸机接口
/// </summary>
[SugarTable("mes_push_papercut", "推送mes裁纸机接口")]
public class MesPushPaperCut : EntityBase
{
    #region 推送参数
 
    /// <summary>
    /// 包装号
    /// </summary>
    [Required]
    [SugarColumn(ColumnName = "PackageCode", ColumnDescription = "包装号", Length = 50)]
    public string PackageCode { get; set; }
 
 
    [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; }
 
 
    #endregion
 
 
    /// <summary>
    /// 推送状态
    /// </summary>
    [Required]
    [SugarColumn(ColumnName = "PushStatus", ColumnDescription = "推送状态")]
    public PushStatusEnum PushStatus { get; set; }
 
 
    /// <summary>
    /// 推送时间
    /// </summary>
    [SugarColumn(ColumnName = "PushTime", ColumnDescription = "推送时间")]
    public DateTime? PushTime { get; set; }
 
    /// <summary>
    /// 返回时间
    /// </summary>
    [SugarColumn(ColumnName = "RetTime", ColumnDescription = "返回时间")]
    public DateTime? RetTime { get; set; }
 
    /// <summary>
    /// 推送次数
    /// </summary>
    [Required]
    [SugarColumn(ColumnName = "PushNum", ColumnDescription = "推送次数")]
    public int PushNum { get; set; }
 
    /// <summary>
    /// 接口返回参数
    /// </summary>
    [SugarColumn(ColumnName = "ApiMessage", ColumnDescription = "接口返回参数", Length = 5000)]
    public string? ApiMessage { get; set; }
 
}