123456789101112131415161718 |
- using SqlSugar;
- using System.ComponentModel;
- using WCS.Entity.Protocol.Protocol.Robot;
- namespace WCS.Entity.Protocol.Robot
- {
- /// <summary>
- /// 机械臂DB522
- /// </summary>
- [Description("机械臂DB522")]
- public interface IRobot522 : IProtocol
- {
- /// <summary>
- /// 报警
- /// </summary>
- public RobotAlarm Alarm { get; set; }
- }
- }
|