| | |
| | | [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 |
| | | |
| | |
| | | public DateTime? PushTime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 返回时间 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "RetTime", ColumnDescription = "返回时间")] |
| | | public DateTime? RetTime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 推送次数 |
| | | /// </summary> |
| | | [Required] |
| | |
| | | /// <summary> |
| | | /// 接口返回参数 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ApiMessage", ColumnDescription = "接口返回参数", Length = 50)] |
| | | public string ApiMessage { get; set; } |
| | | [SugarColumn(ColumnName = "ApiMessage", ColumnDescription = "接口返回参数", Length = 5000)] |
| | | public string? ApiMessage { get; set; } |
| | | |
| | | } |