6 changed files with 310 additions and 2 deletions
@ -0,0 +1,126 @@ |
|||
package com.zc.business.domain; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import com.ruoyi.common.annotation.Excel; |
|||
import com.ruoyi.common.core.domain.BaseEntity; |
|||
import java.util.Date; |
|||
/** |
|||
* @author 王思祥 |
|||
* @ClassName DcDoor |
|||
*/ |
|||
|
|||
public class DcDoor extends BaseEntity { |
|||
/** 预警编号 */ |
|||
private Long id; |
|||
|
|||
/** 所在桩号 */ |
|||
@Excel(name = "所在桩号") |
|||
private String stakeMark; |
|||
|
|||
/** 方向:1-上行2-中3-下行 */ |
|||
@Excel(name = "方向",readConverterExp = "1=菏泽方向,3=济南方向,2=双向") |
|||
private String direction; |
|||
|
|||
private String deviceName; |
|||
private String deviceType; |
|||
private String operate; |
|||
private String iotDeviceId; |
|||
private String endStakeMark; |
|||
|
|||
private String startTime; |
|||
|
|||
private String endTime; |
|||
public String getEndStakeMark() { |
|||
return endStakeMark; |
|||
} |
|||
|
|||
public void setEndStakeMark(String endStakeMark) { |
|||
this.endStakeMark = endStakeMark; |
|||
} |
|||
|
|||
|
|||
public String getStartTime() { |
|||
return startTime; |
|||
} |
|||
|
|||
public void setStartTime(String startTime) { |
|||
this.startTime = startTime; |
|||
} |
|||
|
|||
public String getEndTime() { |
|||
return endTime; |
|||
} |
|||
|
|||
public void setEndTime(String endTime) { |
|||
this.endTime = endTime; |
|||
} |
|||
|
|||
public Long getId() { |
|||
return id; |
|||
} |
|||
|
|||
public void setId(Long id) { |
|||
this.id = id; |
|||
} |
|||
|
|||
public String getStakeMark() { |
|||
return stakeMark; |
|||
} |
|||
|
|||
public void setStakeMark(String stakeMark) { |
|||
this.stakeMark = stakeMark; |
|||
} |
|||
|
|||
public String getDirection() { |
|||
return direction; |
|||
} |
|||
|
|||
public void setDirection(String direction) { |
|||
this.direction = direction; |
|||
} |
|||
|
|||
public String getDeviceName() { |
|||
return deviceName; |
|||
} |
|||
|
|||
public void setDeviceName(String deviceName) { |
|||
this.deviceName = deviceName; |
|||
} |
|||
|
|||
public String getDeviceType() { |
|||
return deviceType; |
|||
} |
|||
|
|||
public void setDeviceType(String deviceType) { |
|||
this.deviceType = deviceType; |
|||
} |
|||
|
|||
public String getOperate() { |
|||
return operate; |
|||
} |
|||
|
|||
public void setOperate(String operate) { |
|||
this.operate = operate; |
|||
} |
|||
|
|||
public String getIotDeviceId() { |
|||
return iotDeviceId; |
|||
} |
|||
|
|||
public void setIotDeviceId(String iotDeviceId) { |
|||
this.iotDeviceId = iotDeviceId; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
return "DcDoor{" + |
|||
"id=" + id + |
|||
", stakeMark='" + stakeMark + '\'' + |
|||
", direction='" + direction + '\'' + |
|||
", deviceName='" + deviceName + '\'' + |
|||
", deviceType='" + deviceType + '\'' + |
|||
", operate='" + operate + '\'' + |
|||
", iotDeviceId='" + iotDeviceId + '\'' + |
|||
'}'; |
|||
} |
|||
} |
Loading…
Reference in new issue