18 changed files with 129 additions and 16 deletions
@ -0,0 +1,24 @@
|
||||
package com.air.applets.dto; |
||||
|
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* 城市地块统计数据 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-11-25 15:47:04 |
||||
*/ |
||||
@Data |
||||
@ApiModel(value = "城市地块统计数据") |
||||
public class LandStatisticsDto { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
@ApiModelProperty(value = "城市") |
||||
private String city; |
||||
@ApiModelProperty(value = "地块数量") |
||||
private Integer landAmount; |
||||
|
||||
} |
@ -1,12 +1,17 @@
|
||||
package com.air.applets.service; |
||||
|
||||
import com.air.applets.dto.LandStatisticsDto; |
||||
import com.air.applets.entity.ViewLand; |
||||
import com.baomidou.mybatisplus.extension.service.IService; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* @author peihao |
||||
* @date 2021-11-25 15:47:04 |
||||
*/ |
||||
public interface ViewLandService extends IService<ViewLand> { |
||||
|
||||
List<LandStatisticsDto> getLandStatisticsOfCity(); |
||||
|
||||
} |
||||
|
@ -0,0 +1,29 @@
|
||||
package com.air.applets.vo; |
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* 用户看地收藏 |
||||
* |
||||
* @author peihao |
||||
* @date 2021-11-25 15:47:04 |
||||
*/ |
||||
@Data |
||||
@ApiModel(value = "") |
||||
public class LandUserKeepVo { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
@JsonIgnore |
||||
@ApiModelProperty(value = "用户id") |
||||
private Integer userId; |
||||
@ApiModelProperty(value = "城市") |
||||
private String city; |
||||
@ApiModelProperty(value = "行政区") |
||||
private String canton; |
||||
@ApiModelProperty(value = "交易状态") |
||||
private String transactionStatus; |
||||
|
||||
} |
Loading…
Reference in new issue