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