Commit 69c4acbe58444bd18f5245469c4872a0771b0c96
1 parent
605ca58b
update 地址
Showing
1 changed file
with
4 additions
and
4 deletions
src/main/java/com/huaheng/pc/config/address/domain/Address.java
@@ -37,9 +37,9 @@ public class Address implements Serializable { | @@ -37,9 +37,9 @@ public class Address implements Serializable { | ||
37 | /** | 37 | /** |
38 | * 区域 | 38 | * 区域 |
39 | */ | 39 | */ |
40 | - @TableField(value = "number") | 40 | + @TableField(value = "area") |
41 | @ApiModelProperty(value="区域") | 41 | @ApiModelProperty(value="区域") |
42 | - private Integer number; | 42 | + private Integer area; |
43 | 43 | ||
44 | /** | 44 | /** |
45 | * 参数 | 45 | * 参数 |
@@ -88,10 +88,10 @@ public class Address implements Serializable { | @@ -88,10 +88,10 @@ public class Address implements Serializable { | ||
88 | } | 88 | } |
89 | 89 | ||
90 | public Integer getArea() { | 90 | public Integer getArea() { |
91 | - return number; | 91 | + return area; |
92 | } | 92 | } |
93 | 93 | ||
94 | public void setArea(Integer area) { | 94 | public void setArea(Integer area) { |
95 | - this.number = area; | 95 | + this.area = area; |
96 | } | 96 | } |
97 | } | 97 | } |