using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace Hydro.MapView
|
{
|
[Serializable]
|
public class MeterViewModel:NodeViewModel
|
{
|
public override string ToString()
|
{
|
if (string.IsNullOrEmpty(PatternID)) PatternID = "";
|
return $"{ID}\t{Elev}\t{Demand}\t{PatternID}\t;\t";
|
}
|
|
/// <summary>
|
/// 当量模板ID
|
/// </summary>
|
public long DlTemplateID { get; set; }
|
|
}
|
}
|