| | |
| | | [SugarTable] |
| | | public class Dt_ContainerItem : BaseEntity |
| | | { |
| | | /// <summary> |
| | | /// ä¸»é® |
| | | /// </summary> |
| | | [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] |
| | | public int Id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 容å¨ä¸»è¡¨ä¸»é® |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "容å¨ä¸»è¡¨ä¸»é®")] |
| | | public int ContainerId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç¼å· |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 100, ColumnDescription = "ç¼å·")] |
| | | public string ItemCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// åç§° |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 100, ColumnDescription = "åç§°")] |
| | | public string ItemName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// é¿ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "é¿")] |
| | | public int ItemLength { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 宽 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "宽")] |
| | | public int ItemWidth { get; set; } |
| | | |
| | | /// <summary> |
| | | /// é« |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "é«")] |
| | | public int ItemHeight { get; set; } |
| | | |
| | | /// <summary> |
| | | /// Xåæ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "Xåæ ")] |
| | | public int ItemPositionX { get; set; } |
| | | |
| | | /// <summary> |
| | | /// Yåæ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "Yåæ ")] |
| | | public int ItemPositionY { get; set; } |
| | | |
| | | /// <summary> |
| | | /// Zåæ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "Zåæ ")] |
| | | public int ItemPositionZ { get; set; } |
| | | |
| | | /// <summary> |
| | | /// Xç¸å¯¹åæ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "Xç¸å¯¹åæ ")] |
| | | public int ItemRelaPositionX { get; set; } |
| | | |
| | | /// <summary> |
| | | /// Yç¸å¯¹åæ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "Yç¸å¯¹åæ ")] |
| | | public int ItemRelaPositionY { get; set; } |
| | | |
| | | /// <summary> |
| | | /// Zç¸å¯¹åæ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "Zç¸å¯¹åæ ")] |
| | | public int ItemRelaPositionZ { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç¶æ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "ç¶æ")] |
| | | public int ItemStatus { get; set; } |
| | | |
| | | [SugarColumn(IsNullable = true, Length = 255, ColumnDescription = "ç¶æ")] |
| | | /// <summary> |
| | | /// 夿³¨ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 255, ColumnDescription = "夿³¨")] |
| | | public string Remark { get; set; } |
| | | } |
| | | } |