Commit b7c3bc61e506657b7c318e83006db93a38f7c3e7
1 parent
dae6b29a33
Exists in
master
and in
8 other branches
修改转诊
Showing 1 changed file with 80 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BookBuildManagerQueryRequest.java
View file @
b7c3bc6
1 | +package com.lyms.platform.operate.web.request; | |
2 | + | |
3 | +/** | |
4 | + * | |
5 | + * 孕妇建档管理查询 | |
6 | + * | |
7 | + * Created by Administrator on 2016/11/9 0009. | |
8 | + */ | |
9 | +public class BookBuildManagerQueryRequest extends BasePageQueryRequest { | |
10 | + //省 | |
11 | + private String provinceRegisterId; | |
12 | + //市 | |
13 | + private String cityRegisterId; | |
14 | + //区 | |
15 | + private String areaRegisterId; | |
16 | + //名字 | |
17 | + private String name; | |
18 | + //证件号 | |
19 | + private String cardNo; | |
20 | + //联系电话 | |
21 | + private String phone; | |
22 | + //条码 | |
23 | + private String barCode; | |
24 | + | |
25 | + public String getProvinceRegisterId() { | |
26 | + return provinceRegisterId; | |
27 | + } | |
28 | + | |
29 | + public void setProvinceRegisterId(String provinceRegisterId) { | |
30 | + this.provinceRegisterId = provinceRegisterId; | |
31 | + } | |
32 | + | |
33 | + public String getCityRegisterId() { | |
34 | + return cityRegisterId; | |
35 | + } | |
36 | + | |
37 | + public void setCityRegisterId(String cityRegisterId) { | |
38 | + this.cityRegisterId = cityRegisterId; | |
39 | + } | |
40 | + | |
41 | + public String getAreaRegisterId() { | |
42 | + return areaRegisterId; | |
43 | + } | |
44 | + | |
45 | + public void setAreaRegisterId(String areaRegisterId) { | |
46 | + this.areaRegisterId = areaRegisterId; | |
47 | + } | |
48 | + | |
49 | + public String getName() { | |
50 | + return name; | |
51 | + } | |
52 | + | |
53 | + public void setName(String name) { | |
54 | + this.name = name; | |
55 | + } | |
56 | + | |
57 | + public String getCardNo() { | |
58 | + return cardNo; | |
59 | + } | |
60 | + | |
61 | + public void setCardNo(String cardNo) { | |
62 | + this.cardNo = cardNo; | |
63 | + } | |
64 | + | |
65 | + public String getPhone() { | |
66 | + return phone; | |
67 | + } | |
68 | + | |
69 | + public void setPhone(String phone) { | |
70 | + this.phone = phone; | |
71 | + } | |
72 | + | |
73 | + public String getBarCode() { | |
74 | + return barCode; | |
75 | + } | |
76 | + | |
77 | + public void setBarCode(String barCode) { | |
78 | + this.barCode = barCode; | |
79 | + } | |
80 | +} |