| | |
| | |  |
| | | using System; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | |
| | | [SugarTable] |
| | | public class Dt_Container : BaseEntity |
| | | { |
| | | /// <summary> |
| | | /// ä¸»é® |
| | | /// </summary> |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int Id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç¼å· |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 100, ColumnDescription = "ç¼å·")] |
| | | public string ContainerCode { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "é¿")] |
| | | public int ContainerLength { get; set; } |
| | | /// <summary> |
| | | /// ç±»å |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "ç±»å")] |
| | | public int ContainerType { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "宽")] |
| | | public int ContainerWidth { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "é«")] |
| | | public int ContainerHeight { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "Xåæ ")] |
| | | public int ContainerPositionX { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "Yåæ ")] |
| | | public int ContainerPositionY { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "Zåæ ")] |
| | | public int ContainerPositionZ { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç¶æ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "ç¶æ")] |
| | | public int ContainerStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// é¿ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "é¿")] |
| | | public int ContainerLength { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 宽 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "宽")] |
| | | public int ContainerWidth { get; set; } |
| | | |
| | | /// <summary> |
| | | /// é« |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "é«")] |
| | | public int ContainerHeight { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æåº |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "æåº")] |
| | | public int ContainerSort { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "夿³¨")] |
| | | /// <summary> |
| | | /// 夿³¨ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "夿³¨")] |
| | | public string ContainerRemark { get; set; } |
| | | |
| | | [Navigate(NavigateType.OneToMany, nameof(Dt_ContainerItem.ContainerId), nameof(Id))] |