FlowEntity.cs 687 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace TimedUpload.utils
  6. {
  7. public class FlowEntity
  8. {
  9. public string devId { get; set; }
  10. public string MeterAssessmentCode { get; set; }
  11. public string GetDateTime { get; set; }
  12. public string NetCumulativeFlow { get; set; }
  13. public string PositiveCumulativeFlow { get; set; }
  14. public string NegativeCumulativeFlow { get; set; }
  15. public string InstantaneousFlow { get; set; }
  16. public string Pressure { get; set; }
  17. public string BatteryVoltageValue { get; set; }
  18. public string devName { get; set; }
  19. }
  20. }