Commit b8a8ca581c2614e979f85268e34fb1186c210ed1

Authored by jiangjiazhi
1 parent 820c6734f3

产妇增加字段

Showing 1 changed file with 7 additions and 4 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/SieveApplyOrderAddRequest.java View file @ b8a8ca5
... ... @@ -3,8 +3,11 @@
3 3 import com.lyms.platform.common.base.IBasicRequestConvert;
4 4 import com.lyms.platform.common.core.annotation.form.FormParam;
5 5 import com.lyms.platform.common.core.annotation.form.Form;
  6 +import com.lyms.platform.common.utils.JsonUtil;
6 7 import com.lyms.platform.pojo.SieveApplyOrderModel;
7 8  
  9 +import java.util.List;
  10 +
8 11 /**
9 12 * 产筛申请
10 13 * Created by Administrator on 2016/6/15 0015.
... ... @@ -14,7 +17,7 @@
14 17 @FormParam
15 18 private String parentId;
16 19 @FormParam
17   - private String check;
  20 + private List check;
18 21 @FormParam
19 22 private String guide;
20 23 @FormParam
... ... @@ -27,7 +30,7 @@
27 30 SieveApplyOrderModel sieveApplyOrderModel = new SieveApplyOrderModel();
28 31 sieveApplyOrderModel.setParentId(parentId);
29 32 sieveApplyOrderModel.setApplyDoctor(applyDoctor);
30   - sieveApplyOrderModel.setCheckItem(check);
  33 + sieveApplyOrderModel.setCheckItem(JsonUtil.array2JsonString(check));
31 34 sieveApplyOrderModel.setCheckDate(checkDate);
32 35 sieveApplyOrderModel.setGuide(guide);
33 36 return sieveApplyOrderModel;
34 37  
... ... @@ -41,11 +44,11 @@
41 44 this.applyDoctor = applyDoctor;
42 45 }
43 46  
44   - public String getCheck() {
  47 + public List getCheck() {
45 48 return check;
46 49 }
47 50  
48   - public void setCheck(String check) {
  51 + public void setCheck(List check) {
49 52 this.check = check;
50 53 }
51 54