123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LeaRun.Application.Entity.PipeNetworkManage
- {
- public class RealCurvesEntity
- {
- /// <summary>
- /// 实时曲线
- /// </summary>
- public string MeterAssessmentId { get; set; }
- public string Type { get; set; }
- public string Value { get; set; }
- public string Date { get; set; }
- public string MeterAssessmentName { get; set; }
- }
- }
|