parent
466bbdbec9
commit
34b1bf63a8
@ -0,0 +1,17 @@
|
||||
package com.ruoyi.database.domain.dto;
|
||||
|
||||
import com.ruoyi.database.domain.DevopsDeviceInfo;
|
||||
|
||||
public class DeviceDTO extends DevopsDeviceInfo {
|
||||
private String concatenatedAddress;
|
||||
|
||||
// getters and setters for the new field
|
||||
public String getConcatenatedAddress() {
|
||||
return concatenatedAddress;
|
||||
}
|
||||
|
||||
public void setConcatenatedAddress(String concatenatedAddress) {
|
||||
this.concatenatedAddress = concatenatedAddress;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,98 @@
|
||||
package com.ruoyi.database.domain.vo;
|
||||
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class alarmInfoVO{
|
||||
|
||||
/**
|
||||
* 警情编码
|
||||
*/
|
||||
@ApiModelProperty("警情编码")
|
||||
@Excel(name = "警情编码")
|
||||
private String alarmCode;
|
||||
|
||||
/**
|
||||
* 接警人姓名
|
||||
*/
|
||||
@ApiModelProperty("接警人姓名")
|
||||
@Excel(name = "接警人姓名")
|
||||
private String policeReceiverName;
|
||||
|
||||
/**
|
||||
* 接警单位
|
||||
*/
|
||||
@ApiModelProperty("接警单位")
|
||||
@Excel(name = "接警单位")
|
||||
private String alarmResponseUnit;
|
||||
|
||||
/**
|
||||
* 接警时间
|
||||
*/
|
||||
@ApiModelProperty("接警时间")
|
||||
@Excel(name = "接警时间")
|
||||
private String alarmResponseTime;
|
||||
|
||||
/**
|
||||
* 报警内容
|
||||
*/
|
||||
@ApiModelProperty("报警内容")
|
||||
@Excel(name = "报警内容")
|
||||
private String alarmResponseContent;
|
||||
|
||||
/**
|
||||
* 报警类型名称
|
||||
*/
|
||||
@ApiModelProperty("报警类型名称")
|
||||
@Excel(name = "报警类型名称")
|
||||
private String alarmResponseTypeName;
|
||||
|
||||
/**
|
||||
* 报警人姓名
|
||||
*/
|
||||
@ApiModelProperty("报警人姓名")
|
||||
@Excel(name = "报警人姓名")
|
||||
private String informantName;
|
||||
|
||||
/**
|
||||
* 报警人联系方式
|
||||
*/
|
||||
@ApiModelProperty("报警人联系方式")
|
||||
@Excel(name = "报警人联系方式")
|
||||
private String informantPhone;
|
||||
|
||||
/**
|
||||
* 报警时间
|
||||
*/
|
||||
@ApiModelProperty("报警时间")
|
||||
@Excel(name = "报警时间")
|
||||
private String informantTime;
|
||||
|
||||
/**
|
||||
* 接警事发地址
|
||||
*/
|
||||
@ApiModelProperty("接警事发地址")
|
||||
@Excel(name = "接警事发地址")
|
||||
private String alarmAddress;
|
||||
|
||||
/**
|
||||
* 经度
|
||||
*/
|
||||
@ApiModelProperty("经度")
|
||||
@Excel(name = "经度")
|
||||
private Double longitude;
|
||||
|
||||
/**
|
||||
* 纬度
|
||||
*/
|
||||
@ApiModelProperty("纬度")
|
||||
@Excel(name = "纬度")
|
||||
private Double latitude;
|
||||
|
||||
|
||||
private String startDate;
|
||||
|
||||
private String endDate;
|
||||
}
|
Loading…
Reference in new issue