using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Model.Models; namespace WIDESEA_DTO.Stock { public class StockViewDTO : Dt_LocationInfo { public int StockId { get; set; } public string PalletCode { get; set; } public bool IsFull { get; set; } public int StockStatus { get; set; } public string StockRemark { get; set; } [Navigate(NavigateType.OneToMany, nameof(Dt_StockInfoDetail.StockId), nameof(StockId))] public List Details { get; set; } } }