|
@@ -0,0 +1,139 @@
|
|
|
+package com.miniframe.ptdj;
|
|
|
+
|
|
|
+public class PtDjResultData {
|
|
|
+ private String mine_code;
|
|
|
+ private String point_code;
|
|
|
+ private String data_time;
|
|
|
+ private String sensor_type;
|
|
|
+ private String sensor_type_name;
|
|
|
+ private String point_location;
|
|
|
+ private String point_value;
|
|
|
+ private String point_status;
|
|
|
+ private String value_unit;
|
|
|
+ private String create_time;
|
|
|
+ private String x_coordinate;
|
|
|
+ private String y_coordinate;
|
|
|
+ private String z_coordinate;
|
|
|
+ private String pipes;
|
|
|
+ private String site;
|
|
|
+
|
|
|
+ public String getMine_code() {
|
|
|
+ return mine_code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMine_code(String mine_code) {
|
|
|
+ this.mine_code = mine_code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPoint_code() {
|
|
|
+ return point_code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPoint_code(String point_code) {
|
|
|
+ this.point_code = point_code;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getData_time() {
|
|
|
+ return data_time;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setData_time(String data_time) {
|
|
|
+ this.data_time = data_time;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSensor_type() {
|
|
|
+ return sensor_type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSensor_type(String sensor_type) {
|
|
|
+ this.sensor_type = sensor_type;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSensor_type_name() {
|
|
|
+ return sensor_type_name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSensor_type_name(String sensor_type_name) {
|
|
|
+ this.sensor_type_name = sensor_type_name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPoint_location() {
|
|
|
+ return point_location;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPoint_location(String point_location) {
|
|
|
+ this.point_location = point_location;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPoint_value() {
|
|
|
+ return point_value;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPoint_value(String point_value) {
|
|
|
+ this.point_value = point_value;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPoint_status() {
|
|
|
+ return point_status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPoint_status(String point_status) {
|
|
|
+ this.point_status = point_status;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getValue_unit() {
|
|
|
+ return value_unit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setValue_unit(String value_unit) {
|
|
|
+ this.value_unit = value_unit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCreate_time() {
|
|
|
+ return create_time;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreate_time(String create_time) {
|
|
|
+ this.create_time = create_time;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getX_coordinate() {
|
|
|
+ return x_coordinate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setX_coordinate(String x_coordinate) {
|
|
|
+ this.x_coordinate = x_coordinate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getY_coordinate() {
|
|
|
+ return y_coordinate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setY_coordinate(String y_coordinate) {
|
|
|
+ this.y_coordinate = y_coordinate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getZ_coordinate() {
|
|
|
+ return z_coordinate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setZ_coordinate(String z_coordinate) {
|
|
|
+ this.z_coordinate = z_coordinate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPipes() {
|
|
|
+ return pipes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPipes(String pipes) {
|
|
|
+ this.pipes = pipes;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getSite() {
|
|
|
+ return site;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSite(String site) {
|
|
|
+ this.site = site;
|
|
|
+ }
|
|
|
+}
|