| | |
| | | public string LocationCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¯å¦æ»¡ç |
| | | /// æ¯å¦æ´åº |
| | | /// </summary> |
| | | [Required] |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "æ¯å¦æ»¡ç")] |
| | | public bool IsFull { get; set; } = true; |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "æ¯å¦æ´åº")] |
| | | public bool IsFullExit { get; set; } = true; |
| | | |
| | | /// <summary> |
| | | /// ç¶æ |
| | |
| | | /// <summary> |
| | | /// åºåæç» |
| | | /// </summary> |
| | | [MinItemsCount(1)] // æ£æµéåå
ç´ æå°1个 |
| | | [SugarColumn(ColumnName = "BoxingInfoDetails")] |
| | | [Navigate(NavigateType.OneToMany, nameof(DtBoxingInfoDetail.BoxingInfoId))] |
| | | public List<DtBoxingInfoDetail>? BoxingInfoDetails { get; set; } |