DataVo.java 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. /**
  2. * <p>文件名: DataVo.java</p>
  3. * <p>版权: </p>
  4. * <p>公司: company Co., Ltd.</p>
  5. * <p>项目名:lnly</p>
  6. * <p>作者: 刘厦(liusha.information@gmail.com)</p>
  7. */
  8. package com.hcks.cmfds.vo;
  9. /**
  10. *
  11. *
  12. * 项目名称:nxfd 类名称:DataVo 类描述: 创建人:石林 创建时间:2014-3-4 下午2:34:22 修改人:shilinno1
  13. * 修改时间:2014-3-4 下午2:34:22 修改备注:
  14. *
  15. * @version
  16. *
  17. */
  18. public class DataVo {
  19. private Long time;
  20. private String timestr;
  21. private String code;
  22. private Double value1;
  23. private Double value2;
  24. private Double value3;
  25. private Double value4;
  26. private Double value5;
  27. private Double value6;
  28. private Double value7;
  29. private Double value8;
  30. private Double value9;
  31. private Double speed;
  32. private String name;
  33. private String url;
  34. private String aName;
  35. private String desc;
  36. private String datefomat;
  37. private Long minRange;
  38. private Long pointInterval;
  39. private Integer year;
  40. private Integer month;
  41. private Integer day;
  42. private String id;
  43. private Integer hours;
  44. private Integer minutes;
  45. private Integer seconds;
  46. private Long beginDate;
  47. private Long endDate;
  48. private Long beginDateDay;
  49. private Long endDateDay;
  50. private String value;
  51. private ValueObjVo valueObjVo;
  52. public String getCode() {
  53. return code;
  54. }
  55. public void setCode(String code) {
  56. this.code = code;
  57. }
  58. public ValueObjVo getValueObjVo() {
  59. return valueObjVo;
  60. }
  61. public void setValueObjVo(ValueObjVo valueObjVo) {
  62. this.valueObjVo = valueObjVo;
  63. }
  64. public String getValue() {
  65. return value;
  66. }
  67. public void setValue(String value) {
  68. this.value = value;
  69. }
  70. public Long getMinRange() {
  71. return minRange;
  72. }
  73. public void setMinRange(Long minRange) {
  74. this.minRange = minRange;
  75. }
  76. public Long getPointInterval() {
  77. return pointInterval;
  78. }
  79. public void setPointInterval(Long pointInterval) {
  80. this.pointInterval = pointInterval;
  81. }
  82. public Integer getHours() {
  83. return hours;
  84. }
  85. public void setHours(Integer hours) {
  86. this.hours = hours;
  87. }
  88. public Integer getMinutes() {
  89. return minutes;
  90. }
  91. public void setMinutes(Integer minutes) {
  92. this.minutes = minutes;
  93. }
  94. public Integer getSeconds() {
  95. return seconds;
  96. }
  97. public void setSeconds(Integer seconds) {
  98. this.seconds = seconds;
  99. }
  100. public Long getTime() {
  101. return time;
  102. }
  103. public void setTime(Long time) {
  104. this.time = time;
  105. }
  106. public Double getSpeed() {
  107. return speed;
  108. }
  109. public void setSpeed(Double speed) {
  110. this.speed = speed;
  111. }
  112. public Double getValue1() {
  113. return value1;
  114. }
  115. public void setValue1(Double value1) {
  116. this.value1 = value1;
  117. }
  118. public Double getValue2() {
  119. return value2;
  120. }
  121. public void setValue2(Double value2) {
  122. this.value2 = value2;
  123. }
  124. public Double getValue3() {
  125. return value3;
  126. }
  127. public void setValue3(Double value3) {
  128. this.value3 = value3;
  129. }
  130. public Double getValue4() {
  131. return value4;
  132. }
  133. public void setValue4(Double value4) {
  134. this.value4 = value4;
  135. }
  136. public Double getValue5() {
  137. return value5;
  138. }
  139. public void setValue5(Double value5) {
  140. this.value5 = value5;
  141. }
  142. public Double getValue6() {
  143. return value6;
  144. }
  145. public void setValue6(Double value6) {
  146. this.value6 = value6;
  147. }
  148. public String getName() {
  149. return name;
  150. }
  151. public void setName(String name) {
  152. this.name = name;
  153. }
  154. public String getUrl() {
  155. return url;
  156. }
  157. public void setUrl(String url) {
  158. this.url = url;
  159. }
  160. public String getaName() {
  161. return aName;
  162. }
  163. public void setaName(String aName) {
  164. this.aName = aName;
  165. }
  166. public String getDesc() {
  167. return desc;
  168. }
  169. public void setDesc(String desc) {
  170. this.desc = desc;
  171. }
  172. public String getId() {
  173. return id;
  174. }
  175. public void setId(String id) {
  176. this.id = id;
  177. }
  178. public Integer getYear() {
  179. return year;
  180. }
  181. public void setYear(Integer year) {
  182. this.year = year;
  183. }
  184. public Integer getMonth() {
  185. return month;
  186. }
  187. public void setMonth(Integer month) {
  188. this.month = month;
  189. }
  190. public Integer getDay() {
  191. return day;
  192. }
  193. public void setDay(Integer day) {
  194. this.day = day;
  195. }
  196. public Long getBeginDate() {
  197. return beginDate;
  198. }
  199. public void setBeginDate(Long beginDate) {
  200. this.beginDate = beginDate;
  201. }
  202. public Long getEndDate() {
  203. return endDate;
  204. }
  205. public void setEndDate(Long endDate) {
  206. this.endDate = endDate;
  207. }
  208. public String getDatefomat() {
  209. return datefomat;
  210. }
  211. public void setDatefomat(String datefomat) {
  212. this.datefomat = datefomat;
  213. }
  214. public Long getBeginDateDay() {
  215. return beginDateDay;
  216. }
  217. public void setBeginDateDay(Long beginDateDay) {
  218. this.beginDateDay = beginDateDay;
  219. }
  220. public Long getEndDateDay() {
  221. return endDateDay;
  222. }
  223. public void setEndDateDay(Long endDateDay) {
  224. this.endDateDay = endDateDay;
  225. }
  226. public String getTimestr() {
  227. return timestr;
  228. }
  229. public void setTimestr(String timestr) {
  230. this.timestr = timestr;
  231. }
  232. public Double getValue7() {
  233. return value7;
  234. }
  235. public void setValue7(Double value7) {
  236. this.value7 = value7;
  237. }
  238. public Double getValue8() {
  239. return value8;
  240. }
  241. public void setValue8(Double value8) {
  242. this.value8 = value8;
  243. }
  244. public Double getValue9() {
  245. return value9;
  246. }
  247. public void setValue9(Double value9) {
  248. this.value9 = value9;
  249. }
  250. }