地图页数据统计
parent
b9618af887
commit
2a212bf98b
|
|
@ -0,0 +1,28 @@
|
|||
package com.zcloud.modules.forestResource.dto;
|
||||
|
||||
import com.zcloud.common.validator.group.UpdateGroup;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 首页统计各区县数据
|
||||
*
|
||||
* @author JinZeE
|
||||
* @since 2025-12-09
|
||||
*/
|
||||
@Data
|
||||
@ApiModel(value="HomepageStatisticsDTO",description= "首页统计各区县数据")
|
||||
public class HomepageStatisticsDTO implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@ApiModelProperty(value = "区县名称")
|
||||
private String name;
|
||||
|
||||
@ApiModelProperty(value = "各区县数据")
|
||||
private String num;
|
||||
}
|
||||
Loading…
Reference in New Issue