feat(corp): 企业信息和第三方平台信息增加地区属性

- 在 CompanyInfoReqDto 和 ThirdPlatformReqDto 中添加村、街道和省市区县名称字段
- 新增字段用于更详细地表示企业及第三方平台的地理位置
V1.0.0
10396 2025-08-25 13:52:03 +08:00
parent efb2895128
commit d46b9bca0c
2 changed files with 33 additions and 1 deletions

View File

@ -137,6 +137,22 @@ public class CompanyInfoReqDto {
*/
private String county;
/**
*
*/
private String village;
/**
*
*/
private String street;
/**
*
*/
private String areaName;
/**
*
*/

View File

@ -76,5 +76,21 @@ public class ThirdPlatformReqDto {
*/
private String county;
/**
*
*/
private String village;
/**
*
*/
private String street;
/**
*
*/
private String areaName;
}