using System; using Volo.Abp.Application.Dtos; using WinIn.FasterZ.Job.Enums.Inventory; namespace WinIn.FasterZ.Job.Z_Business.CheckJob.Dtos; /// /// /// [Serializable] public class CheckJobDetailDto : AuditedEntityDto { /// /// /// public string? Order { get; set; } /// /// /// public string? CustomerItemCode { get; set; } /// /// /// public string? Qty_Uom { get; set; } /// /// /// public decimal? Qty_Qty { get; set; } /// /// /// public Guid? MasterID { get; set; } /// /// /// public string? Number { get; set; } /// /// /// public string? Remark { get; set; } /// /// /// public Guid? Item_Id { get; set; } /// /// /// public string? Item_Name { get; set; } /// /// /// public string? Item_Desc1 { get; set; } /// /// /// public string? Item_Desc2 { get; set; } /// /// /// public string? ItemCode { get; set; } /// /// /// public string? StdPack_PackUom { get; set; } /// /// /// public decimal? StdPack_PackQty { get; set; } /// /// /// public EnumInventoryStatus? Status { get; set; } /// /// /// public string? ContainerCode { get; set; } /// /// /// public string? PackingCode { get; set; } /// /// /// public string? Lot { get; set; } /// /// /// public string? Batch_SupplierBatch { get; set; } /// /// /// public DateTime? Batch_ProduceDate { get; set; } /// /// /// public string? LocationCode { get; set; } /// /// /// public string? WarehouseCode { get; set; } /// /// /// public DateTime? Batch_ExpireDate { get; set; } }