37 lines
756 B
C#
37 lines
756 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.EnergySystem.Dto
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 记录信号强度
|
|||
|
|
/// </summary>
|
|||
|
|
public class AddSignalStrengthInput
|
|||
|
|
{
|
|||
|
|
/// <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; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|