Commit 2a471292a9a14ee8cf37f396e404fdb5d1330fdf
1 parent
2fa9545bbe
Exists in
master
and in
8 other branches
孕妇分娩后 变成产妇
Showing 1 changed file with 25 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/GuideQuery.java
View file @
2a47129
1 | +package com.lyms.platform.operate.web.request; | |
2 | + | |
3 | +/** | |
4 | + * Created by Administrator on 2016/8/5 0005. | |
5 | + */ | |
6 | +public class GuideQuery { | |
7 | + private Integer type; | |
8 | + private Integer num; | |
9 | + | |
10 | + public Integer getNum() { | |
11 | + return num; | |
12 | + } | |
13 | + | |
14 | + public void setNum(Integer num) { | |
15 | + this.num = num; | |
16 | + } | |
17 | + | |
18 | + public Integer getType() { | |
19 | + return type; | |
20 | + } | |
21 | + | |
22 | + public void setType(Integer type) { | |
23 | + this.type = type; | |
24 | + } | |
25 | +} |