MotionPdo.cs 676 B

123456789101112131415161718192021222324252627282930313233
  1. using SKMC.Api.Common.Types;
  2. namespace SKMC.Api.Motion.Model
  3. {
  4. /// <summary>
  5. /// PDO数据模型
  6. /// </summary>
  7. public class MotionPdo : MotionSdo
  8. {
  9. /// <summary>
  10. /// 组号
  11. /// </summary>
  12. public string Group { get; set; }
  13. /// <summary>
  14. /// 读写标识 0:读, 1:写
  15. /// </summary>
  16. public short RW { get; set; }
  17. private TimestampSet timestampSet;
  18. /// <summary>
  19. /// 时间戳数据集
  20. /// </summary>
  21. public TimestampSet TimestampSet
  22. {
  23. get { return timestampSet; }
  24. set { timestampSet = value; }
  25. }
  26. }
  27. }