using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiShe.CollectBus.EnergySystem.Dto
{
///
/// 查询自动上报开启状态输入
///
public class QueryAutoReportOpenStatusInput:BaseInput
{
///
/// 电表:1
///
public string MeterType { get; set; }
public QueryAutoReportOpenStatusDetailInput Detail { get; set; }
}
public class QueryAutoReportOpenStatusDetailInput
{
///
/// 任务号
///
public int Pn { get; set; }
}
}