TComp.cs 717 B

12345678910111213141516171819202122232425262728293031
  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. //比较表的实体
  9. public class TComp
  10. {
  11. public string CompId { get; set; }
  12. public string CreateTime { get; set; }
  13. public string StandId { get; set; }
  14. public string NPatchId { get; set; }
  15. public string OPatchId { get; set; }
  16. public TComp()
  17. {
  18. CompId = string.Empty;
  19. CreateTime = string.Empty;
  20. StandId = string.Empty;
  21. NPatchId = string.Empty;
  22. OPatchId = string.Empty;
  23. }
  24. //------------------------------------------
  25. }
  26. }