| | |
| | | using Admin.NET.Core; |
| | | using Admin.NET.Core.Enum; |
| | | |
| | | namespace Admin.NET.Application.Entity; |
| | | |
| | | /// <summary> |
| | | /// 推送mes包装号表 |
| | | /// </summary> |
| | | [SugarTable("mes_PushPackageCode", "推送mes包装号表")] |
| | | [SugarTable("mes_push_packagecode", "推送mes包装号表")] |
| | | public class MesPushPackageCode : EntityBase |
| | | { |
| | | /// <summary> |
| | |
| | | /// </summary> |
| | | [Required] |
| | | [SugarColumn(ColumnName = "PushStatus", ColumnDescription = "推送状态")] |
| | | public int PushStatus { get; set; } |
| | | 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> |
| | | /// 接口返回参数 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ApiMessage", ColumnDescription = "接口返回参数", Length = 50)] |
| | | public string ApiMessage { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 创建者部门Id |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "CreateOrgId", ColumnDescription = "创建者部门Id")] |
| | | public long? CreateOrgId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 创建者部门名称 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "CreateOrgName", ColumnDescription = "创建者部门名称", Length = 64)] |
| | | public string CreateOrgName { get; set; } |
| | | [SugarColumn(ColumnName = "ApiMessage", ColumnDescription = "接口返回参数", Length = 5000)] |
| | | public string? ApiMessage { get; set; } |
| | | |
| | | } |