using System; using Volo.Abp.Application.Dtos; using WinIn.FasterZ.Job.Enums.Inventory; using WinIn.FasterZ.Job.Enums.Store; namespace WinIn.FasterZ.Job.Z_Business.InspectJob.Dtos; /// /// /// [Serializable] public class InspectJobDetailDto : AuditedEntityDto { /// /// /// public string? PoNumber { get; set; } /// /// /// public string? PoLine { get; set; } /// /// /// public EnumInspectType? InspectType { get; set; } /// /// /// public decimal? SamplePercent { get; set; } /// /// /// public string? ReceiveQty_Uom { get; set; } /// /// /// public decimal? ReceiveQty_Qty { get; set; } /// /// /// public decimal? InspectQty { get; set; } /// /// /// public decimal? GoodQty { get; set; } /// /// /// public string? FailedReason { get; set; } /// /// /// public decimal? FailedQty { get; set; } /// /// /// public decimal? CrackQty { get; set; } /// /// /// public string? InspectUser_Name { get; set; } /// /// /// public string? InspectUser_Phone { get; set; } /// /// /// public string? InspectUser_Email { get; set; } /// /// /// public decimal? NotPassedQty { get; set; } /// /// /// public Guid? MasterID { get; set; } /// /// /// public string? Number { get; set; } /// /// /// public string? Remark { get; set; } /// /// /// public string? WarehouseCode { 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? RecommendContainerCode { get; set; } /// /// /// public string? RecommendPackingCode { get; set; } /// /// /// public string? RecommendBatch_SupplierBatch { get; set; } /// /// /// public DateTime? RecommendBatch_ProduceDate { get; set; } /// /// /// public string? RecommendLot { get; set; } /// /// /// public string? RecommendLocationCode { get; set; } /// /// /// public string? RecommendQty_Uom { get; set; } /// /// /// public decimal? RecommendQty_Qty { get; set; } /// /// /// public string? HandledContainerCode { get; set; } /// /// /// public string? HandledPackingCode { get; set; } /// /// /// public string? HandledBatch_SupplierBatch { get; set; } /// /// /// public DateTime? HandledBatch_ProduceDate { get; set; } /// /// /// public string? HandledLot { get; set; } /// /// /// public string? HandledLocationCode { get; set; } /// /// /// public string? HandledQty_Uom { get; set; } /// /// /// public decimal? HandledQty_Qty { get; set; } /// /// /// public DateTime? HandledBatch_ExpireDate { get; set; } /// /// /// public DateTime? RecommendBatch_ExpireDate { get; set; } }