123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197 |
- package com.zhongbei.dzserve.entity;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.time.LocalDateTime;
- /**
- * 设备表
- */
- public class Device implements Serializable {
- /**
- * 序号
- */
- private Integer id;
- /**
- * 设备编号
- */
- private String devicename;
- /**
- * 设备名称
- */
- private String aliasName;
- /**
- * 设备类型
- */
- private String deviceType;
- /**
- * 测区ID
- */
- private Integer surveyId;
- /**
- * 卡号
- */
- private String simNo;
- /**
- * 备注
- */
- private String remark;
- /**
- * 地址
- */
- private String address;
- /**
- * 安装时间
- */
- private LocalDateTime installTime;
- /**
- * 供电方式
- */
- private String powerType;
- /**
- * 通信方式
- */
- private String netType;
- /**
- * 经度
- */
- private BigDecimal longitude;
- /**
- * 纬度
- */
- private BigDecimal latitude;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getDevicename() {
- return devicename;
- }
- public void setDevicename(String devicename) {
- this.devicename = devicename;
- }
- public String getAliasName() {
- return aliasName;
- }
- public void setAliasName(String aliasName) {
- this.aliasName = aliasName;
- }
- public String getDeviceType() {
- return deviceType;
- }
- public void setDeviceType(String deviceType) {
- this.deviceType = deviceType;
- }
- public Integer getSurveyId() {
- return surveyId;
- }
- public void setSurveyId(Integer surveyId) {
- this.surveyId = surveyId;
- }
- public String getSimNo() {
- return simNo;
- }
- public void setSimNo(String simNo) {
- this.simNo = simNo;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- public String getAddress() {
- return address;
- }
- public void setAddress(String address) {
- this.address = address;
- }
- public LocalDateTime getInstallTime() {
- return installTime;
- }
- public void setInstallTime(LocalDateTime installTime) {
- this.installTime = installTime;
- }
- public String getPowerType() {
- return powerType;
- }
- public void setPowerType(String powerType) {
- this.powerType = powerType;
- }
- public String getNetType() {
- return netType;
- }
- public void setNetType(String netType) {
- this.netType = netType;
- }
- public BigDecimal getLongitude() {
- return longitude;
- }
- public void setLongitude(BigDecimal longitude) {
- this.longitude = longitude;
- }
- public BigDecimal getLatitude() {
- return latitude;
- }
- public void setLatitude(BigDecimal latitude) {
- this.latitude = latitude;
- }
- @Override
- public String toString() {
- return "Device{" +
- "id=" + id +
- ", devicename='" + devicename + '\'' +
- ", aliasName='" + aliasName + '\'' +
- ", deviceType='" + deviceType + '\'' +
- ", surveyId=" + surveyId +
- ", simNo='" + simNo + '\'' +
- ", remark='" + remark + '\'' +
- ", address='" + address + '\'' +
- ", installTime=" + installTime +
- ", powerType='" + powerType + '\'' +
- ", netType='" + netType + '\'' +
- ", longitude=" + longitude +
- ", latitude=" + latitude +
- '}';
- }
- }
|