using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Rdh.SocketServer.Client.Models { /// /// 药箱请求时钟的数据协议类 /// public class ClockRequestProtocol : EleMedKitProtocol { public ClockRequestProtocol() { base.Command = EleMedKitCommand.RequestClock; } public override string GetContent() { return base.GetContent() + AddLineContent(CountFlag); } } }