using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Linq; namespace IoTIntegrationPlatform.Model.common { /// /// 基础查询 /// public class BaseParm : PageParm { /// /// id /// public int Id { get; set; } /// /// uuid /// public string Uuid { get; set; } /// /// 平台Id /// public int PlatformId { get; set; } /// /// 设备Id /// public string DeviceId { get; set; } /// /// 客户id /// public int CustomerId { get; set; } /// /// id集合 /// public string Ids { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 类型 /// public int Type { get; set; } = -1; /// /// 状态 值为true/false /// public bool State { get; set; } /// /// 状态 值为1..... /// public int Status { get; set; } /// /// 备用参数 /// public string Param { get; set; } /// /// 备用参数1 /// public string Param1 { get; set; } /// /// 当前时间 /// public DateTime CurrentTime { get; set; } /// /// 开始时间 /// public DateTime StartTime { get; set; } /// /// 结束时间 /// public DateTime EndTime { get; set; } /// /// int 类型1 /// public int Int1 { get; set; } /// /// int 类型2 /// public int Int2 { get; set; } /// /// 小数 类型1 /// public decimal Decimal1 { get; set; } /// /// 小数 类型2 /// public decimal Decimal2 { get; set; } } }