RealCurvesEntity.cs 528 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace LeaRun.Application.Entity.PipeNetworkManage
  7. {
  8. public class RealCurvesEntity
  9. {
  10. /// <summary>
  11. /// 实时曲线
  12. /// </summary>
  13. public string MeterAssessmentId { get; set; }
  14. public string Type { get; set; }
  15. public string Value { get; set; }
  16. public string Date { get; set; }
  17. public string MeterAssessmentName { get; set; }
  18. }
  19. }