using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Domain.IoTRemoteControlEntity { public class Request { /// /// 客控厂商提供给每个酒店的账号ID /// public string userId { get; set; } /// /// 房间号 /// public string roomNum { get; set; } /// /// 遥控器名称标示 /// public string command { get; set; } /// /// 传递词条 /// public string mode { get; set; } /// /// 时间戳,秒 /// public long timestamp { get; set; } /// /// (userId+roomNum+ timestamp)的md5值 /// public string sign { get; set; } } /// /// 统⼀错误 /// public class Error { /// /// 0成功,-1失败 /// public int code { get; set; } /// /// 失败内容 /// public string msg { get; set; } } }