| | |
| | | using SqlSugar; |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | |
| | | public string ShortName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å·¥åç¨çº¸åºå· |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "å·¥åç¨çº¸åºå·")] |
| | | public int Number { get; set; } |
| | | |
| | | /// <summary> |
| | | /// åºåºåç¶æ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "åºåºåç¶æ")] |
| | |
| | | public string Remark { get; set; } |
| | | |
| | | /// <summary> |
| | | /// ç©æç¼å· |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true, ColumnDescription = "ç©æç¼å·")] |
| | | public string MaterialNos { get; set; } |
| | | |
| | | /// <summary> |
| | | /// å¹
宽 |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true, ColumnDescription = "å¹
宽")] |
| | | public string MaterialWides { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¥å« |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true, ColumnDescription = "æ¥å«")] |
| | | public string BoardFluteNos { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦ç¼ºæ |
| | | /// </summary> |
| | | [SugarColumn(IsIgnore = true, ColumnDescription = "æ¯å¦ç¼ºæ")] |
| | | public bool IsLackMaterial { get; set; } |
| | | |
| | | /// <summary> |
| | | /// éè´å表 |
| | | /// </summary> |
| | | [Navigate(NavigateType.OneToMany, nameof(Dt_OutSGOrderDetail.OutSGOrderId), nameof(Id))] |
| | | public List<Dt_OutSGOrderDetail> Details { get; set; } |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string MaterialLackStatus { get; set; } |
| | | } |
| | | } |