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.
26 lines
702 B
26 lines
702 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BatCharging.Model
|
|
{
|
|
public class CMD1021
|
|
{
|
|
/// <summary>
|
|
/// 响应结果
|
|
/// 0-响应成功 1-设备代号有误,不允许升级
|
|
/// 2-项 目 代 码 不 存在,不允许升级
|
|
/// 3-文件大小出错,停止升级
|
|
/// 说明:非 0 都表示失败
|
|
/// </summary>
|
|
public UInt32 responseResults { get; set; }
|
|
/// <summary>
|
|
/// 响应说明
|
|
/// 字符串,对响应的文字说明
|
|
/// </summary>
|
|
public string responseDescription { get; set; }
|
|
}
|
|
}
|