2025-04-17 20:28:50 +08:00

41 lines
1016 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Volo.Abp.Domain.Entities;
namespace JiShe.CollectBus.IotSystems.Records
{
/// <summary>
/// 信号强度
/// </summary>
public class CsqRecord : AggregateRoot<Guid>
{
public CsqRecord(string areaCode,string address,int deviceType,string csq)
{
AreaCode = areaCode;
Address = address;
DeviceType = deviceType;
Csq = csq;
}
/// <summary>
/// 区域编号
/// </summary>
public string AreaCode { get; set; }
/// <summary>
/// 区域地址
/// </summary>
public string Address { get; set; }
/// <summary>
/// 1电表 2水表 3集中器
/// </summary>
public int DeviceType { get; set; }
/// <summary>
/// 信号强度
/// </summary>
public string Csq { get; set; }
}
}