| | |
| | | /// <summary> |
| | | /// æåç¼å· |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "æåç¼å·")] |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "æåç¼å·")] |
| | | public string ProductCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æååç§° |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "æååç§°")] |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "æååç§°")] |
| | | public string ProductName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æµæ°´å· |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "æµæ°´å·")] |
| | | public string BoxingNo { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)]//ä¸å䏿°æ®åºæ å°ï¼æµè¯ä½¿ç¨ |
| | | [Navigate(NavigateType.OneToMany, nameof(Dt_BoxingDetail.BoxingId), nameof(Id))] |
| | | public List<Dt_BoxingDetail> Details { get; set; } |
| | | } |