using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BatCharging.Model { public class CMD1406 { /// /// 预留1 长度2byte /// public UInt16 reserved1 { get; set; } /// /// 预留2 长度2byte /// public UInt16 reserved2 { get; set; } /// /// 获取日志类型 /// 1.bms 日志 2.系统日志 3.记录日志 4.全部日志 /// public byte getLogType { get; set; } /// /// FTP 服务器 IP 地址 32 /// 例:IP:16.80.1.20 指令为:0x10 0x50 0x01 0x14 ///该字段为空时,使用本地默认FTP 地址。建议默认使用 IP 方式 /// public string ftpServerIPaddress { get; set; } /// /// ftp用户名 16byte 不足补)0x00 16 /// public string ftpUserName { get; set; } /// /// ftp密码 16byte 不足补)0x00 16 /// public string ftpPassWord { get; set; } /// /// ftp存放日志路径 32 /// public string ftpSavePath { get; set; } /// /// 执行方式 1:空闲执行 2:立即执行 /// public byte executeWay { get; set; } } }