using System; using System.ComponentModel.DataAnnotations; using Volo.Abp.Application.Dtos; namespace WmsWebApi.StockMove { public class SSDetailDto : EntityDto { public string BarCode { get; set; } public string Batch { get; set; } public string PartCode { get; set; } public string PartDesc { get; set; } = ""; public string PpBillNum { get; set; } public decimal PpLine { get; set; } = 0; public string ProduceDate { get; set; } public decimal Qty { get; set; } public string ReceiveDate { get; set; } public string ScrapQty { get; set; } public string ShiftName { get; set; } public string State { get; set; } public string FromLocCode { get; set; } public string ToLocCode { get; set; } public string TraceBackCode { get; set; } public string Unit { get; set; } } }