24 lines
558 B
C#
24 lines
558 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 AmmeterArchivesDownOutput
|
||
{
|
||
/// <summary>
|
||
/// true: 成功,false:失败
|
||
/// </summary>
|
||
public bool ValidData { get; set; }
|
||
/// <summary>
|
||
/// 备注(业务系统未使用)
|
||
/// </summary>
|
||
public string Remark { get; set; }
|
||
}
|
||
}
|