SetAbsolutePositionDataModel.cs 347 B

12345678910111213
  1. using System.Collections.Generic;
  2. namespace SWRIS.Models
  3. {
  4. public class SetAbsolutePositionDataModel
  5. {
  6. /// <summary>
  7. /// 0=成功,>0=失败-原因码
  8. /// 1:未开始工作;2:钢丝绳运行中;3:正在发送不可打断的数据
  9. /// </summary>
  10. public byte Code { get; set; }
  11. }
  12. }