9 changed files with 110 additions and 99 deletions
@ -1,51 +1,46 @@ |
|||
using System; |
|||
using Volo.Abp.Application.Dtos; |
|||
using System.Collections.Generic; |
|||
using WinIn.FasterZ.Wms.AppBase.FasterBaseDto; |
|||
using WinIn.FasterZ.Wms.Z_Business.StoreWorkOrderDetail.Dtos; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business.StoreWorkOrder.Dtos; |
|||
|
|||
using System.Collections.Generic; |
|||
|
|||
using WinIn.FasterZ.Wms.Permissions; |
|||
using WinIn.FasterZ.Wms.Z_Business.StoreWorkOrderDetail; |
|||
|
|||
[Serializable] |
|||
public class StoreWorkOrderDto : FasterAuditedEntityBaseDto<Guid> |
|||
{ |
|||
public DateTime ActiveDate { get; set; } |
|||
public DateTime ActiveDate { get; set; } |
|||
|
|||
public DateTime EffectiveDate { get; set; } |
|||
public DateTime EffectiveDate { get; set; } |
|||
|
|||
public string ItemCode { get; set; } |
|||
public string ItemCode { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public string? ItemName { get; set; } |
|||
|
|||
public string? LocationCode { get; set; } |
|||
public string? LocationCode { get; set; } |
|||
|
|||
public string Number { get; set; } |
|||
public string Number { get; set; } |
|||
|
|||
public string? Op { get; set; } |
|||
public string? Op { get; set; } |
|||
|
|||
public decimal Qty { get; set; } |
|||
public decimal Qty { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? Remark { get; set; } |
|||
|
|||
public List<StoreWorkOrderDetailDto> Details {get;set;} =new (); |
|||
public List<StoreWorkOrderDetailDto> Details { get; set; } = new(); |
|||
|
|||
public string Type { get; set; } |
|||
public string Type { get; set; } |
|||
|
|||
public string Uom { get; set; } |
|||
public string Uom { get; set; } |
|||
|
|||
public string? Worker { get; set; } |
|||
public string? Worker { get; set; } |
|||
|
|||
public string? WorkOrderId { get; set; } |
|||
public string? WorkOrderId { get; set; } |
|||
|
|||
public string? WorkStation { get; set; } |
|||
public string? WorkStation { get; set; } |
|||
|
|||
public string WoStatus { get; set; } |
|||
public string WoStatus { get; set; } |
|||
} |
@ -1,38 +1,32 @@ |
|||
using System; |
|||
using Volo.Abp.Application.Dtos; |
|||
using WinIn.FasterZ.Wms.Z_Business.StoreWorkOrder.Dtos; |
|||
using WinIn.FasterZ.Wms.AppBase.FasterBaseDto; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business.StoreWorkOrderDetail.Dtos; |
|||
|
|||
using WinIn.FasterZ.Wms.Permissions; |
|||
using WinIn.FasterZ.Wms.Z_Business.StoreWorkOrder; |
|||
|
|||
[Serializable] |
|||
public class StoreWorkOrderDetailDto : AuditedEntityDto<Guid> |
|||
public class StoreWorkOrderDetailDto : FasterAuditedEntityBaseDto<Guid> |
|||
{ |
|||
public DateTime EffectiveDate { get; set; } |
|||
|
|||
public string ItemCode { get; set; } |
|||
public DateTime EffectiveDate { get; set; } |
|||
|
|||
public string? ItemDesc1 { get; set; } |
|||
public string ItemCode { get; set; } |
|||
|
|||
public string? ItemDesc2 { get; set; } |
|||
public string? ItemDesc1 { get; set; } |
|||
|
|||
public string? ItemName { get; set; } |
|||
public string? ItemDesc2 { get; set; } |
|||
|
|||
|
|||
public string? ItemName { get; set; } |
|||
|
|||
public Guid MasterId { get; set; } |
|||
public Guid MasterId { get; set; } |
|||
|
|||
public string Number { get; set; } |
|||
public string Number { get; set; } |
|||
|
|||
public string? Op { get; set; } |
|||
public string? Op { get; set; } |
|||
|
|||
public string? RawLocationCode { get; set; } |
|||
public string? RawLocationCode { get; set; } |
|||
|
|||
public decimal RawQty { get; set; } |
|||
public decimal RawQty { get; set; } |
|||
|
|||
public string? RawUom { get; set; } |
|||
public string? RawUom { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
public string? Remark { get; set; } |
|||
} |
Loading…
Reference in new issue