| | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.omg.PortableInterceptor.INACTIVE; |
| | | |
| | | import java.util.Date; |
| | | |
| | |
| | | @ApiModelProperty("自增id") |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("地址编码") |
| | | private String addressCode; |
| | | @ApiModelProperty("社区id") |
| | | private String communityId; |
| | | |
| | | @ApiModelProperty("小区名称") |
| | | private String areaName; |
| | |
| | | |
| | | @ApiModelProperty("创建时间") |
| | | private Date createAt; |
| | | |
| | | @ApiModelProperty("分页页数") |
| | | private Long pageNum; |
| | | |
| | | @ApiModelProperty("每页记录数") |
| | | private Long pageSize; |
| | | |
| | | @ApiModelProperty("地址编码") |
| | | private String areaCode; |
| | | |
| | | @ApiModelProperty("楼层规则 1 01 001") |
| | | private String roleFloor; |
| | | |
| | | @ApiModelProperty("连接符 空格 或者 -") |
| | | private String roleConnector; |
| | | |
| | | @ApiModelProperty("门牌号规则 1 01 001") |
| | | private String roleDoor; |
| | | |
| | | @ApiModelProperty("是否累加门牌号 0 否 1 是") |
| | | private Integer isAccumulation; |
| | | } |