95 lines
1.8 KiB
Java
95 lines
1.8 KiB
Java
|
|
package com.rzyc.model;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
||
|
|
import io.swagger.annotations.ApiModel;
|
||
|
|
import io.swagger.annotations.ApiModelProperty;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/***
|
||
|
|
* 企业设备列表带巡查
|
||
|
|
* @date 2023/3/16
|
||
|
|
* @author Xuwanxin
|
||
|
|
* */
|
||
|
|
@ApiModel(value="EntDeviceInsStatistic", description="")
|
||
|
|
public class EntDeviceInsStatistic {
|
||
|
|
|
||
|
|
@ApiModelProperty("设备id")
|
||
|
|
private String deviceId;
|
||
|
|
|
||
|
|
@ApiModelProperty("设备名")
|
||
|
|
private String name;
|
||
|
|
|
||
|
|
@ApiModelProperty("编号")
|
||
|
|
private String number;
|
||
|
|
|
||
|
|
@ApiModelProperty("状态")
|
||
|
|
private Integer state;
|
||
|
|
|
||
|
|
private String checkPerson;
|
||
|
|
|
||
|
|
|
||
|
|
private long countIns;
|
||
|
|
|
||
|
|
@ApiModelProperty("巡检次数")
|
||
|
|
private long countRecord;
|
||
|
|
|
||
|
|
public String getDeviceId() {
|
||
|
|
return deviceId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDeviceId(String deviceId) {
|
||
|
|
this.deviceId = deviceId;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getName() {
|
||
|
|
return name;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setName(String name) {
|
||
|
|
this.name = name;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getNumber() {
|
||
|
|
return number;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setNumber(String number) {
|
||
|
|
this.number = number;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Integer getState() {
|
||
|
|
return state;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setState(Integer state) {
|
||
|
|
this.state = state;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCheckPerson() {
|
||
|
|
return checkPerson;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCheckPerson(String checkPerson) {
|
||
|
|
this.checkPerson = checkPerson;
|
||
|
|
}
|
||
|
|
|
||
|
|
public long getCountIns() {
|
||
|
|
return countIns;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCountIns(long countIns) {
|
||
|
|
this.countIns = countIns;
|
||
|
|
}
|
||
|
|
|
||
|
|
public long getCountRecord() {
|
||
|
|
return countRecord;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCountRecord(long countRecord) {
|
||
|
|
this.countRecord = countRecord;
|
||
|
|
}
|
||
|
|
}
|