parent
409bca6e7a
commit
14226cfda6
@ -0,0 +1,46 @@
|
||||
package com.ruoyi.screen.domain.response;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 大屏数据请朗专项行动数据统计响应类
|
||||
*/
|
||||
@Data
|
||||
@ApiModel("大屏数据请朗专项行动数据统计响应类")
|
||||
public class ZongzhiMapResponse {
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
@ApiModelProperty(value = "id")
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 纬度
|
||||
*/
|
||||
@ApiModelProperty(value = "纬度")
|
||||
private double latitude;
|
||||
|
||||
|
||||
/**
|
||||
* 经度
|
||||
*/
|
||||
@ApiModelProperty(value = "经度")
|
||||
private double longitude;
|
||||
|
||||
/**
|
||||
* 被举报对象
|
||||
*/
|
||||
@ApiModelProperty(value = "被举报对象")
|
||||
private String jbdx;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Reference in new issue