TPatch.cs 649 B

12345678910111213141516171819202122232425262728
  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 TPatch
  9. {
  10. public string PatchId { get; set; }
  11. public string CreateTime { get; set; }
  12. public string PatchName { get; set; }
  13. public string StandId { get; set; }
  14. public string StandName { get; set; }
  15. public TPatch()
  16. {
  17. PatchId = string.Empty;
  18. CreateTime = string.Empty;
  19. PatchName = string.Empty;
  20. StandId = string.Empty;
  21. StandName = string.Empty;
  22. }
  23. }
  24. }