2025-01-15 21:08:04 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using Volo.Abp.Domain.Entities;
|
|
|
|
|
|
|
2025-03-14 14:28:04 +08:00
|
|
|
|
namespace JiShe.CollectBus.IotSystems.Records
|
2025-01-15 21:08:04 +08:00
|
|
|
|
{
|
|
|
|
|
|
/// <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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|