using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Principal;
using System.Text;
using System.Threading.Tasks;
namespace IoTIntegrationPlatform.Model.Model
{
///
/// 平台型号
///
[SugarTable("platform_model")]
public class PlatformModel
{
///
/// 平台型号id
///
[SugarColumn(ColumnName = "platform_model_id", IsPrimaryKey = true, IsIdentity = true)]
public int PlatformModelId { get; set; }
///
/// 平台型号编号
///
[SugarColumn(ColumnName = "platform_model_code")]
public string PlatformModelCode { get; set; }
///
/// 平台型号名称
///
[SugarColumn(ColumnName = "platform_model_name")]
public string PlatformModelName { get; set; }
///
/// 平台型号图片地址
///
[SugarColumn(ColumnName = "platform_image_url")]
public string PlatformImageUrl { get; set; }
///
/// 最大设备数量
///
[SugarColumn(ColumnName = "max_sensor_number")]
public int MaxSensorNumber { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "remark")]
public string Remark { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "create_time")]
public DateTime CreateTime { get; set; }
///
/// 修改时间
///
[SugarColumn(ColumnName = "update_time")]
public DateTime UpdateTime { get; set; }
///
/// 操作人id
///
[SugarColumn(ColumnName = "operation_id")]
public int OperationId { get; set; }
///
/// 操作人名称
///
[SugarColumn(ColumnName = "operation_name")]
public string OperationName { get; set; }
///
/// 是否有效 0:否 1:是
///
[SugarColumn(ColumnName = "is_valid")]
public bool IsValid { get; set; }
}
}