2024-12-25 16:25:16 +08:00
|
|
|
|
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 AutoReportSetInput
|
|
|
|
|
|
{
|
|
|
|
|
|
public List<AutoReportSetCodeInput> Codes { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public int MeterType { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string GatherCode { get; set; }
|
|
|
|
|
|
|
2025-01-19 22:54:28 +08:00
|
|
|
|
public AutoReportSetDetailsInput Detail { get; set; }
|
2024-12-25 16:25:16 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class AutoReportSetCodeInput
|
|
|
|
|
|
{
|
|
|
|
|
|
public string AreaCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string Address { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class AutoReportSetDetailsInput
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 是否开启自动上报
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public bool IsOpen { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 任务号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public int Pn { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|