using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Waste.Domain { /// /// 设备第三方配置信息 /// [SugarTable("W_DeviceConfig", TableDescription = "设备第三方配置信息", IsDisabledUpdateAll = false, IsDisabledDelete = true)] public class W_DeviceConfig { /// /// 设备ID /// [SugarColumn(IsPrimaryKey = true)] public Guid DeviceId { get; set; } /// /// 推送地址,支持http/https /// [SugarColumn(ColumnDataType = "varchar(200)", ColumnDescription = "推送地址,支持http/https")] public string Url { get; set; } /// /// 额外推送信息,推送时固定以body参数传递 /// [SugarColumn(ColumnDataType = "varchar(100)", ColumnDescription = "额外推送信息,推送时固定以body参数传递")] public string Body { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "创建时间")] public DateTime CreateTime { get; set; } } }