HouseEEPROInfo.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace ivf_tl_Entity.DebugEntitys
  7. {
  8. /// <summary>
  9. /// 只初始化,不更新 house表的垂直电机运动间隔脉冲、house_well_setting的水平电机位置和E方清晰地址
  10. /// </summary>
  11. public class HouseEEPROInfo
  12. {
  13. public string tlSn { get; set; }
  14. public int houseSn { get; set; }
  15. public int hwell1 { get; set; }
  16. public int hwell2 { get; set; }
  17. public int hwell3 { get; set; }
  18. public int hwell4 { get; set; }
  19. public int hwell5 { get; set; }
  20. public int hwell6 { get; set; }
  21. public int hwell7 { get; set; }
  22. public int hwell8 { get; set; }
  23. public int hwell9 { get; set; }
  24. public int hwell10 { get; set; }
  25. public int hwell11 { get; set; }
  26. public int hwell12 { get; set; }
  27. public int hwell13 { get; set; }
  28. public int hwell14 { get; set; }
  29. public int hwell15 { get; set; }
  30. public int hwell16 { get; set; }
  31. /// <summary>
  32. /// E方清晰地址
  33. /// </summary>
  34. public int eepromClearPosition { get; set; }
  35. }
  36. }