TPatch.cs 734 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. 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 int JudgeLastnumFlag { get; set; }
  16. public TPatch()
  17. {
  18. PatchId = string.Empty;
  19. CreateTime = string.Empty;
  20. PatchName = string.Empty;
  21. StandId = string.Empty;
  22. StandName = string.Empty;
  23. JudgeLastnumFlag = 1;
  24. }
  25. }
  26. }