You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.5 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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