43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
|
|
using SqlSugar;
|
||
|
|
|
||
|
|
namespace Waste.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 苏州设备平台关联的设备信息
|
||
|
|
/// </summary>
|
||
|
|
public class W_SZDevice
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 苏州设备平台关联的设备信息
|
||
|
|
/// </summary>
|
||
|
|
public W_SZDevice()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
private System.Guid _DeviceId;
|
||
|
|
/// <summary>
|
||
|
|
/// 自有平台设备ID
|
||
|
|
/// </summary>
|
||
|
|
[SugarColumn(IsPrimaryKey = true)]
|
||
|
|
public System.Guid DeviceId { get { return this._DeviceId; } set { this._DeviceId = value; } }
|
||
|
|
|
||
|
|
private System.String _SecretHash;
|
||
|
|
/// <summary>
|
||
|
|
/// secretHash值
|
||
|
|
/// </summary>
|
||
|
|
public System.String SecretHash { get { return this._SecretHash; } set { this._SecretHash = value?.Trim(); } }
|
||
|
|
|
||
|
|
private System.String _DevId;
|
||
|
|
/// <summary>
|
||
|
|
/// 设备平台对应的ID
|
||
|
|
/// </summary>
|
||
|
|
public System.String DevId { get { return this._DevId; } set { this._DevId = value?.Trim(); } }
|
||
|
|
|
||
|
|
private System.String _Secret;
|
||
|
|
/// <summary>
|
||
|
|
/// secret值
|
||
|
|
/// </summary>
|
||
|
|
public System.String Secret { get { return this._Secret; } set { this._Secret = value?.Trim(); } }
|
||
|
|
}
|
||
|
|
}
|