using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataService.Model { /// /// 串口服务器无线 /// public class import_ckwx { /// /// 串口及网络协议配置 波特率 /// public string ckcssz_btl { get; set; } /// /// 串口及网络协议配置 数据位 /// public string ckcssz_sjw { get; set; } /// /// 串口及网络协议配置 检验位 /// public string ckcssz_jyw { get; set; } /// /// 串口及网络协议配置 停止位 /// public string ckcssz_tzw { get; set; } /// /// 串口及网络协议配置 流控 /// public string ckcssz_lk { get; set; } /// /// 串口及网络协议配置 485功能 /// public string ckcssz_485 { get; set; } /// /// 串口及网络协议配置 自定义波特率(类RFC2117) /// public string ckcssz_zdybtl { get; set; } /// /// 串口及网络协议配置 串口自动成帧 /// public string qtsz_ckzdcz { get; set; } /// /// 串口及网络协议配置 注册包类型 /// public string qtsz_zcblx { get; set; } /// /// 串口及网络协议配置 自定义心跳包 /// public string qtsz_zdyxtb { get; set; } /// /// 串口及网络协议配置 套接字分发功能 /// public string qtsz_tjzffgn { get; set; } /// /// 网口配置 开启网口 /// public string ytwgn_kqwk { get; set; } /// /// 网口配置 网口工作方式 /// public string ytwgn_wkgzfs { get; set; } /// /// 网口配置 网口模式 /// public string wkmssz_wkms { get; set; } /// /// 无线配置 工作模式 /// public string wxpz_gzms { get; set; } /// /// 无线配置 网络名称 /// public string wxpz_wlmc { get; set; } /// /// 无线配置 加密模式 /// public string wxpz_jmms { get; set; } /// /// 无线配置 加密算法 /// public string wxpz_jmsf { get; set; } /// /// 无线配置 密码 /// public string wxpz_mm { get; set; } } }