26 lines
548 B
C#
Raw Normal View History

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 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; }
}
}