25 lines
618 B
C#
25 lines
618 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.EnergySystem.Dto
|
|||
|
|
{
|
|||
|
|
public class EquitDubgInput: BaseInput
|
|||
|
|
{
|
|||
|
|
public string ItemCode { get; set; }
|
|||
|
|
public int FocusID { get; set; }
|
|||
|
|
public string Data { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 表计类型
|
|||
|
|
/// 电表= 1,水表= 2,燃气表= 3,热能表= 4,
|
|||
|
|
/// </summary>
|
|||
|
|
public int MeterType { get; set; }
|
|||
|
|
|
|||
|
|
public bool IsManual { get; set; } = true;
|
|||
|
|
|
|||
|
|
public string TaskId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|