| | |
| | | */ |
| | | package org.springblade.modules.article.vo; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springblade.modules.article.entity.ArticleIntegralEntity; |
| | | import org.springblade.core.tool.node.INode; |
| | | import lombok.Data; |
| | |
| | | public class ArticleIntegralVO extends ArticleIntegralEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 姓名 |
| | | */ |
| | | @ApiModelProperty(value = "姓名") |
| | | private String realName; |
| | | |
| | | /** |
| | | * 电话 |
| | | */ |
| | | @ApiModelProperty(value = "电话") |
| | | private String phone; |
| | | |
| | | /** |
| | | * 地址 |
| | | */ |
| | | @ApiModelProperty(value = "地址") |
| | | private String address; |
| | | |
| | | /** |
| | | * 小区名称 |
| | | */ |
| | | @ApiModelProperty(value = "小区名称") |
| | | private String aoiName; |
| | | |
| | | } |