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.

31 lines
771 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HybirdFrameworkEntity
{
public class CMD205
{
/// <summary>
/// 预留
/// </summary>
public ushort Reserved1 { get; set; }
/// <summary>
/// 预留
/// </summary>
public ushort Reserved2 { get; set; }
/// <summary>
/// 响应码
/// <para>0密码正确</para>
/// <para>其它:密码错误</para>
/// </summary>
public uint ResponseCode { get; set; }
/// <summary>
/// 帐户余额(密码正确是填真实数据,否则填 0)
/// </summary>
public uint Balance { get; set; }
}
}