| | |
| | | |
| | | namespace WIDESEA_Model.Models |
| | | { |
| | | /// <summary> |
| | | /// æ¶è´§å |
| | | /// </summary> |
| | | [SugarTable(nameof(Dt_ReceiveOrder), "æ¶è´§å")] |
| | | public class Dt_ReceiveOrder : BaseEntity |
| | | { |
| | |
| | | [SugarColumn(IsNullable = true, Length = 500, ColumnDescription = "夿³¨")] |
| | | public string Remark { get; set; } |
| | | |
| | | /// <summary> |
| | | /// æ¶è´§åæç» |
| | | /// </summary> |
| | | [Navigate(NavigateType.OneToMany, nameof(Dt_ReceiveOrderDetail.ReceiveOrderId), nameof(ReceiveOrderId))] |
| | | public List<Dt_ReceiveOrderDetail> Details { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string? PurchaseOrderNo { get; set; } |
| | | } |
| | | } |