using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_DTO.Stock { public class StockSelectViewDTO { public int Id { get; set; } public string MaterielCode { get; set; } public string MaterielName { get; set; } public decimal UseableQuantity { get; set; } public string PalletCode { get; set; } public string LocationCode { get; set; } public string OrderNo { get; set; } public string BatchNo { get; set; } /// /// 入库时间 /// public DateTime? InDate { get; set; } } }