You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
760 B

3 weeks ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NFine.Application.Models
  7. {
  8. public class IcsItemLotInIQCCheckDto
  9. {
  10. public string TransCode { get; set; }
  11. public string TransSequence { get; set; }
  12. public string InvCode { get; set; }
  13. public string InvName { get; set; }
  14. public string InvBatcgNo { get; set; }
  15. public string LotNo { get; set; }
  16. public decimal Quantity { get; set; }
  17. public decimal? GoodQty { get; set; }
  18. public decimal? NgQty { get; set; }
  19. public decimal? InQty { get; set; }
  20. public decimal? SampleQty { get; set; }
  21. public decimal? LeftQty { get; set; }
  22. }
  23. }