UpdateOutProductionOrderDto.cs 788 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ShwasherSys.ProductionOrderInfo.Dto
  7. {
  8. public class UpdateOutProductionOrderDto
  9. {
  10. public string ProductionOrderNo { get; set; }
  11. public string SourceProductionOrderNo { get; set; }
  12. public string ProcessingTypeNo { get; set; }
  13. public string ProcessingType { get; set; }
  14. public decimal Quantity { get; set; }
  15. public string SemiProductNo { get; set; }
  16. public int SemiOutStoreId { get; set; }
  17. public DateTime PlanProduceDate { get; set; }
  18. public string OutsourcingFactory { get; set; }
  19. public decimal? KgWeight { get; set; }
  20. public string Remark { get; set; }
  21. }
  22. }