1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace WisdomClient.data
- {
- public class DoubleTsData
- {
- public long Ts { get; set; }
- public short Status { get; set; }
- public double DoubleValue { get; set; }
- public String getValue()
- {
- return "" + DoubleValue;
- }
- public override string ToString()
- {
- return String.Format("ts={0}, value={1}", Ts, this.getValue());
- }
- }
- }
|