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
using Admin.NET.Core;
using Admin.NET.Core.Enum;
 
namespace Admin.NET.Application.Entity;
 
/// <summary>
/// 推送mes包装号表
/// </summary>
[SugarTable("mes_push_packagecode", "推送mes包装号表")]
public class MesPushPackageCode : EntityBase
{
    /// <summary>
    /// 包装号
    /// </summary>
    [Required]
    [SugarColumn(ColumnName = "PackageCode", ColumnDescription = "包装号", Length = 50)]
    public string PackageCode { get; set; }
 
    /// <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; }
 
}