WmsQaInspectionResult.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NXWMS.Model.AppModels.Result.Inspection
  7. {
  8. public class WmsQaInspectionResult
  9. {
  10. public int INSPECTION_ID { get; set; }
  11. public string NEWID { get; set; }
  12. public string INSPECTION_NO { get; set; }
  13. public int INSPECTION_TYPE { get; set; }
  14. public string INSPECTION_TYPE_NAME { get; set; }
  15. public int INSPECTION_WAY { get; set; }
  16. public string INSPECTION_WAY_NAME { get; set; }
  17. public string INSPECTION_USER { get; set; }
  18. public DateTime INSPECTION_TIME { get; set; }
  19. public int INSPECTION_STATUS { get; set; }
  20. public string INSPECTION_STATUS_NAME { get; set; }
  21. public string DESCRIBE { get; set; }
  22. public int CREATE_BY { get; set; }
  23. public string CREATE_NAME { get; set; }
  24. public DateTime CREATE_TIME { get; set; }
  25. public int UPDATE_BY { get; set; }
  26. public string UPDATE_NAME { get; set; }
  27. public DateTime UPDATE_TIME { get; set; }
  28. public int DATA_VERSION { get; set; }
  29. public string REMARKS1 { get; set; }
  30. public string REMARKS2 { get; set; }
  31. public string REMARKS3 { get; set; }
  32. public string REMARKS4 { get; set; }
  33. public string REMARKS5 { get; set; }
  34. public List<WmsQaInspectionDtlResult> WmsQaInspectionDtlList { get; set; }
  35. }
  36. }