|  |  | 
 |  |  | package com.doumee.dao.business.model; | 
 |  |  |  | 
 |  |  | import com.baomidou.mybatisplus.annotation.TableField; | 
 |  |  | import com.doumee.core.annotation.excel.ExcelColumn; | 
 |  |  | import com.doumee.dao.business.dto.BaseQueryDto; | 
 |  |  | import io.swagger.annotations.ApiModel; | 
 |  |  | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "省份code") | 
 |  |  |     @ExcelColumn(name="省份code") | 
 |  |  |     private String provicneCode; | 
 |  |  |     private String provinceCode; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "城市code") | 
 |  |  |     @ExcelColumn(name="城市code") | 
 |  |  | 
 |  |  |     @ExcelColumn(name="最近授权绑定备注") | 
 |  |  |     private String authInfo; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "地址") | 
 |  |  |     @ExcelColumn(name="地址") | 
 |  |  |     private String address; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "房屋面积") | 
 |  |  |     @ExcelColumn(name="房屋面积") | 
 |  |  |     private BigDecimal housearea; | 
 |  |  |  | 
 |  |  |     @ApiModelProperty(value = "前缀") | 
 |  |  |     @TableField(exist = false) | 
 |  |  |     private String prefix; | 
 |  |  |  | 
 |  |  | } |