26 lines
548 B
C#
26 lines
548 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 BatchReadVersionInput
|
|
{
|
|
public List<BatchReadVersionDataInput> Data {get; set; }
|
|
|
|
public string GatherCode { get; set; }
|
|
}
|
|
|
|
public class BatchReadVersionDataInput
|
|
{
|
|
public string AreaCode { get; set; }
|
|
|
|
public string Address { get; set; }
|
|
}
|
|
}
|