| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 | 
							- package com.miniframe.model.system;
 
- import com.miniframe.system.MiniserviceBaseModel;
 
- import java.io.Serializable;
 
- import javax.persistence.*;
 
- @Table(name = "d_sensor_val")
 
- public class DSensorVal extends MiniserviceBaseModel implements Serializable {
 
-     @Id
 
-     private Integer id;
 
-     @Column(name = "mine_code")
 
-     private String mineCode;
 
-     @Column(name = "point_code")
 
-     private String pointCode;
 
-     @Column(name = "data_time")
 
-     private String dataTime;
 
-     @Column(name = "sensor_type")
 
-     private String sensorType;
 
-     @Column(name = "sensor_type_name")
 
-     private String sensorTypeName;
 
-     @Column(name = "point_location")
 
-     private String pointLocation;
 
-     @Column(name = "point_value")
 
-     private String pointValue;
 
-     @Column(name = "point_status")
 
-     private String pointStatus;
 
-     @Column(name = "value_unit")
 
-     private String valueUnit;
 
-     @Column(name = "create_time")
 
-     private String createTime;
 
-     @Column(name = "x_coordinate")
 
-     private String xCoordinate;
 
-     @Column(name = "y_coordinate")
 
-     private String yCoordinate;
 
-     @Column(name = "z_coordinate")
 
-     private String zCoordinate;
 
-     private String pipes;
 
-     private String site;
 
-     private Integer aid;
 
-     private Integer jid;
 
-     private static final long serialVersionUID = 1L;
 
-     /**
 
-      * @return id
 
-      */
 
-     public Integer getId() {
 
-         return id;
 
-     }
 
-     /**
 
-      * @param id
 
-      */
 
-     public void setId(Integer id) {
 
-         this.id = id;
 
-     }
 
-     /**
 
-      * @return mine_code
 
-      */
 
-     public String getMineCode() {
 
-         return mineCode;
 
-     }
 
-     /**
 
-      * @param mineCode
 
-      */
 
-     public void setMineCode(String mineCode) {
 
-         this.mineCode = mineCode == null ? null : mineCode.trim();
 
-     }
 
-     /**
 
-      * @return point_code
 
-      */
 
-     public String getPointCode() {
 
-         return pointCode;
 
-     }
 
-     /**
 
-      * @param pointCode
 
-      */
 
-     public void setPointCode(String pointCode) {
 
-         this.pointCode = pointCode == null ? null : pointCode.trim();
 
-     }
 
-     /**
 
-      * @return data_time
 
-      */
 
-     public String getDataTime() {
 
-         return dataTime;
 
-     }
 
-     /**
 
-      * @param dataTime
 
-      */
 
-     public void setDataTime(String dataTime) {
 
-         this.dataTime = dataTime == null ? null : dataTime.trim();
 
-     }
 
-     /**
 
-      * @return sensor_type
 
-      */
 
-     public String getSensorType() {
 
-         return sensorType;
 
-     }
 
-     /**
 
-      * @param sensorType
 
-      */
 
-     public void setSensorType(String sensorType) {
 
-         this.sensorType = sensorType == null ? null : sensorType.trim();
 
-     }
 
-     /**
 
-      * @return sensor_type_name
 
-      */
 
-     public String getSensorTypeName() {
 
-         return sensorTypeName;
 
-     }
 
-     /**
 
-      * @param sensorTypeName
 
-      */
 
-     public void setSensorTypeName(String sensorTypeName) {
 
-         this.sensorTypeName = sensorTypeName == null ? null : sensorTypeName.trim();
 
-     }
 
-     /**
 
-      * @return point_location
 
-      */
 
-     public String getPointLocation() {
 
-         return pointLocation;
 
-     }
 
-     /**
 
-      * @param pointLocation
 
-      */
 
-     public void setPointLocation(String pointLocation) {
 
-         this.pointLocation = pointLocation == null ? null : pointLocation.trim();
 
-     }
 
-     /**
 
-      * @return point_value
 
-      */
 
-     public String getPointValue() {
 
-         return pointValue;
 
-     }
 
-     /**
 
-      * @param pointValue
 
-      */
 
-     public void setPointValue(String pointValue) {
 
-         this.pointValue = pointValue == null ? null : pointValue.trim();
 
-     }
 
-     /**
 
-      * @return point_status
 
-      */
 
-     public String getPointStatus() {
 
-         return pointStatus;
 
-     }
 
-     /**
 
-      * @param pointStatus
 
-      */
 
-     public void setPointStatus(String pointStatus) {
 
-         this.pointStatus = pointStatus == null ? null : pointStatus.trim();
 
-     }
 
-     /**
 
-      * @return value_unit
 
-      */
 
-     public String getValueUnit() {
 
-         return valueUnit;
 
-     }
 
-     /**
 
-      * @param valueUnit
 
-      */
 
-     public void setValueUnit(String valueUnit) {
 
-         this.valueUnit = valueUnit == null ? null : valueUnit.trim();
 
-     }
 
-     /**
 
-      * @return create_time
 
-      */
 
-     public String getCreateTime() {
 
-         return createTime;
 
-     }
 
-     /**
 
-      * @param createTime
 
-      */
 
-     public void setCreateTime(String createTime) {
 
-         this.createTime = createTime == null ? null : createTime.trim();
 
-     }
 
-     /**
 
-      * @return x_coordinate
 
-      */
 
-     public String getxCoordinate() {
 
-         return xCoordinate;
 
-     }
 
-     /**
 
-      * @param xCoordinate
 
-      */
 
-     public void setxCoordinate(String xCoordinate) {
 
-         this.xCoordinate = xCoordinate == null ? null : xCoordinate.trim();
 
-     }
 
-     /**
 
-      * @return y_coordinate
 
-      */
 
-     public String getyCoordinate() {
 
-         return yCoordinate;
 
-     }
 
-     /**
 
-      * @param yCoordinate
 
-      */
 
-     public void setyCoordinate(String yCoordinate) {
 
-         this.yCoordinate = yCoordinate == null ? null : yCoordinate.trim();
 
-     }
 
-     /**
 
-      * @return z_coordinate
 
-      */
 
-     public String getzCoordinate() {
 
-         return zCoordinate;
 
-     }
 
-     /**
 
-      * @param zCoordinate
 
-      */
 
-     public void setzCoordinate(String zCoordinate) {
 
-         this.zCoordinate = zCoordinate == null ? null : zCoordinate.trim();
 
-     }
 
-     /**
 
-      * @return pipes
 
-      */
 
-     public String getPipes() {
 
-         return pipes;
 
-     }
 
-     /**
 
-      * @param pipes
 
-      */
 
-     public void setPipes(String pipes) {
 
-         this.pipes = pipes == null ? null : pipes.trim();
 
-     }
 
-     /**
 
-      * @return site
 
-      */
 
-     public String getSite() {
 
-         return site;
 
-     }
 
-     /**
 
-      * @param site
 
-      */
 
-     public void setSite(String site) {
 
-         this.site = site == null ? null : site.trim();
 
-     }
 
-     /**
 
-      * @return aid
 
-      */
 
-     public Integer getAid() {
 
-         return aid;
 
-     }
 
-     /**
 
-      * @param aid
 
-      */
 
-     public void setAid(Integer aid) {
 
-         this.aid = aid;
 
-     }
 
-     /**
 
-      * @return jid
 
-      */
 
-     public Integer getJid() {
 
-         return jid;
 
-     }
 
-     /**
 
-      * @param jid
 
-      */
 
-     public void setJid(Integer jid) {
 
-         this.jid = jid;
 
-     }
 
- }
 
 
  |