Commit 3e0e6625 authored by hezhen's avatar hezhen

123

parent 64ad65b8
......@@ -43,6 +43,7 @@ public class BranchCompany {
private Integer subordinateBranch;
/**
* 地址-省/直辖市(编码)
*/
......@@ -50,6 +51,13 @@ public class BranchCompany {
@ApiModelProperty("地址-省/直辖市(编码)")
private Integer addrProvince;
/**
* 地址-省/直辖市(编码)名称
*/
@Column(name = "province_name")
@ApiModelProperty("地址-省/直辖市(编码)名称")
private String provinceName;
/**
* 地址-市(编码)
*/
......@@ -57,6 +65,14 @@ public class BranchCompany {
@ApiModelProperty("地址-市(编码)")
private Integer addrCity;
/**
* 地址-市(编码)名称
*/
@Column(name = "city_name")
@ApiModelProperty("地址-市(编码名称")
private String cityName;
/**
* 地址-镇/县(编码)
*/
......@@ -64,6 +80,13 @@ public class BranchCompany {
@ApiModelProperty("地址-镇/县(编码)")
private Integer addrTown;
/**
* 地址-县名称
*/
@Column(name = "town_name")
@ApiModelProperty("县名称")
private String townName;
/**
* 详细地址
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment