Commit 39d5d99879a787c40ec28505a2e42f5f2e9ae59a
1 parent
6e93264a1d
Exists in
master
and in
1 other branch
add data import : basic config
Showing 1 changed file with 3 additions and 3 deletions
platform-biz-patient-service/src/main/java/com/lyms/platform/biz/param/CommunityQuery.java
View file @
39d5d99
| ... | ... | @@ -7,7 +7,7 @@ |
| 7 | 7 | */ |
| 8 | 8 | public class CommunityQuery extends BaseQuery { |
| 9 | 9 | private String keyword; |
| 10 | - private Integer id; | |
| 10 | + private String id; | |
| 11 | 11 | private String level; |
| 12 | 12 | |
| 13 | 13 | public String getLevel() { |
| 14 | 14 | |
| ... | ... | @@ -18,11 +18,11 @@ |
| 18 | 18 | this.level = level; |
| 19 | 19 | } |
| 20 | 20 | |
| 21 | - public Integer getId() { | |
| 21 | + public String getId() { | |
| 22 | 22 | return id; |
| 23 | 23 | } |
| 24 | 24 | |
| 25 | - public void setId(Integer id) { | |
| 25 | + public void setId(String id) { | |
| 26 | 26 | this.id = id; |
| 27 | 27 | } |
| 28 | 28 |