31 lines
679 B
C#
31 lines
679 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 QueryAutoReportOpenStatusInput:BaseInput
|
||
{
|
||
/// <summary>
|
||
/// 电表:1
|
||
/// </summary>
|
||
public string MeterType { get; set; }
|
||
|
||
public QueryAutoReportOpenStatusDetailInput Detail { get; set; }
|
||
|
||
}
|
||
|
||
public class QueryAutoReportOpenStatusDetailInput
|
||
{
|
||
/// <summary>
|
||
/// 任务号
|
||
/// </summary>
|
||
public int Pn { get; set; }
|
||
}
|
||
}
|