Commit dfcb69b13b4c40a73345dac4dcefe9ad71d70d14
1 parent
d3578ebe44
Exists in
master
and in
8 other branches
update
Showing 2 changed files with 65 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/ResidentArchivesRegionController.java
View file @
dfcb69b
... | ... | @@ -22,7 +22,7 @@ |
22 | 22 | @Controller |
23 | 23 | public class ResidentArchivesRegionController extends BaseController{ |
24 | 24 | |
25 | - @RequestMapping(value = "/residentsArchiveList", method = RequestMethod.GET) | |
25 | + @RequestMapping(value = "/r", method = RequestMethod.GET) | |
26 | 26 | @ResponseBody |
27 | 27 | @TokenRequired |
28 | 28 | public BaseResponse queryAllPuerpera(@Valid ResidentsArchiveQueryRequest queryRequest,HttpServletRequest request) { |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/ResidentsArchiveQueryRequest.java
View file @
dfcb69b
... | ... | @@ -42,9 +42,72 @@ |
42 | 42 | |
43 | 43 | //年龄(如: 24-26) |
44 | 44 | private String age; |
45 | - //出生日期 | |
45 | + //出生日期(范围值 - ) | |
46 | 46 | private String birthday; |
47 | 47 | |
48 | + public String getLiveProvinceId() { | |
49 | + return liveProvinceId; | |
50 | + } | |
51 | + | |
52 | + public void setLiveProvinceId(String liveProvinceId) { | |
53 | + this.liveProvinceId = liveProvinceId; | |
54 | + } | |
55 | + | |
56 | + public String getLiveCityId() { | |
57 | + return liveCityId; | |
58 | + } | |
59 | + | |
60 | + public void setLiveCityId(String liveCityId) { | |
61 | + this.liveCityId = liveCityId; | |
62 | + } | |
63 | + | |
64 | + public String getLiveAreaId() { | |
65 | + return liveAreaId; | |
66 | + } | |
67 | + | |
68 | + public void setLiveAreaId(String liveAreaId) { | |
69 | + this.liveAreaId = liveAreaId; | |
70 | + } | |
71 | + | |
72 | + public String getProvinceRegisterId() { | |
73 | + return provinceRegisterId; | |
74 | + } | |
75 | + | |
76 | + public void setProvinceRegisterId(String provinceRegisterId) { | |
77 | + this.provinceRegisterId = provinceRegisterId; | |
78 | + } | |
79 | + | |
80 | + public String getCityRegisterId() { | |
81 | + return cityRegisterId; | |
82 | + } | |
83 | + | |
84 | + public void setCityRegisterId(String cityRegisterId) { | |
85 | + this.cityRegisterId = cityRegisterId; | |
86 | + } | |
87 | + | |
88 | + public String getAreaRegisterId() { | |
89 | + return areaRegisterId; | |
90 | + } | |
91 | + | |
92 | + public void setAreaRegisterId(String areaRegisterId) { | |
93 | + this.areaRegisterId = areaRegisterId; | |
94 | + } | |
95 | + | |
96 | + public String getAge() { | |
97 | + return age; | |
98 | + } | |
99 | + | |
100 | + public void setAge(String age) { | |
101 | + this.age = age; | |
102 | + } | |
103 | + | |
104 | + public String getBirthday() { | |
105 | + return birthday; | |
106 | + } | |
107 | + | |
108 | + public void setBirthday(String birthday) { | |
109 | + this.birthday = birthday; | |
110 | + } | |
48 | 111 | |
49 | 112 | public String getCertificateTypeId() { |
50 | 113 | return certificateTypeId; |