1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace TimedUpload.utils
- {
- public class FlowEntity
- {
- public string devId { get; set; }
- public string MeterAssessmentCode { get; set; }
- public string GetDateTime { get; set; }
- public string NetCumulativeFlow { get; set; }
- public string PositiveCumulativeFlow { get; set; }
- public string NegativeCumulativeFlow { get; set; }
- public string InstantaneousFlow { get; set; }
- public string Pressure { get; set; }
- public string BatteryVoltageValue { get; set; }
- public string devName { get; set; }
-
- }
- }
|