using BPA.SAAS.Manage.Core.Base;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Principal;
using System.Text;
using System.Threading.Tasks;
namespace BPA.SAAS.Manage.Core.Device
{
[SugarTable("bpa_deviceinfo")]
public class BPA_DeviceInfo: IBaseEntity, IGroupId
{
///
/// 设备名称
///
public string DeviceName { get; set; }
///
/// 设备标签
///
public string DeviceTypeId { get; set; }
///
///归属场景(店铺)
///
public string OrgId { get; set; }
///
/// 设备类型
///
public string DeviceTypeKey { get; set; }
///
/// 设备AutoKey 唯一用于mqtt消息推送标识
///
[SugarColumn(IsOnlyIgnoreInsert = true, IsOnlyIgnoreUpdate = true, IsIdentity = true)]
public int AutoKey { get; set; }
///
/// 物料数量
///
public int? MaterialQuantity { get; set; }
///
/// 设备版本
///
public string DeviceVersionKey { get; set; }
public string GroupId { get; set; }
}
}