| New file | 
 |  |  | 
 |  |  | package com.dy.pipIrrGlobal.voBa; | 
 |  |  |  | 
 |  |  | import com.dy.common.po.BaseEntity; | 
 |  |  | import io.swagger.v3.oas.annotations.media.Schema; | 
 |  |  | import lombok.Data; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * @author ZhuBaoMin | 
 |  |  |  * @date 2023/12/18 14:32 | 
 |  |  |  * @LastEditTime 2023/12/18 14:32 | 
 |  |  |  * @Description | 
 |  |  |  */ | 
 |  |  |  | 
 |  |  | @Data | 
 |  |  | @Schema(title = "5级行政区划视图对象") | 
 |  |  | public class VoAreaCode implements BaseEntity { | 
 |  |  |     private static final long serialVersionUID = 202401241703001L; | 
 |  |  |  | 
 |  |  |     @Schema(title = "省级区划代码") | 
 |  |  |     private String provinceId; | 
 |  |  |  | 
 |  |  |     @Schema(title = "市级区划代码") | 
 |  |  |     private String cityId; | 
 |  |  |  | 
 |  |  |     @Schema(title = "县级区划代码") | 
 |  |  |     private String countryId; | 
 |  |  |  | 
 |  |  |     @Schema(title = "镇级区划代码") | 
 |  |  |     private String townId; | 
 |  |  |  | 
 |  |  |     @Schema(title = "村级区划代码") | 
 |  |  |     private String villageId; | 
 |  |  | } |