| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.DebugEntitys
- {
- /// <summary>
- /// 只初始化,不更新 house表的垂直电机运动间隔脉冲、house_well_setting的水平电机位置和E方清晰地址
- /// </summary>
- public class HouseEEPROInfo
- {
- public string tlSn { get; set; }
- public int houseSn { get; set; }
- public int hwell1 { get; set; }
- public int hwell2 { get; set; }
- public int hwell3 { get; set; }
- public int hwell4 { get; set; }
- public int hwell5 { get; set; }
- public int hwell6 { get; set; }
- public int hwell7 { get; set; }
- public int hwell8 { get; set; }
- public int hwell9 { get; set; }
- public int hwell10 { get; set; }
- public int hwell11 { get; set; }
- public int hwell12 { get; set; }
- public int hwell13 { get; set; }
- public int hwell14 { get; set; }
- public int hwell15 { get; set; }
- public int hwell16 { get; set; }
- /// <summary>
- /// E方清晰地址
- /// </summary>
- public int eepromClearPosition { get; set; }
- }
- }
|