VComp.cs 944 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MeterVision.db
  7. {
  8. public class VComp
  9. {
  10. public string CompId { get; set; }
  11. public string CreateTime { get; set; }
  12. public string StandId { get; set; }
  13. public string StandName { get; set; }
  14. public int StandCount { get; set; }
  15. public string NPatchId { get; set; }
  16. public string NPatchName { get; set; }
  17. public string NPatchTime { get; set; }
  18. public int NPatchDetailCount { get; set; }
  19. public int NPatchEqualCount { get; set; }
  20. public string OPatchId { get; set; }
  21. public string OPatchName { get; set; }
  22. public string OPatchTime { get; set; }
  23. public int OPatchDetailCount { get; set; }
  24. public int OPatchEqualCount { get; set; }
  25. public VComp()
  26. {
  27. }
  28. }
  29. }