Commit 8697717e830193ee45eae07cd876fe2f19f13a5c
1 parent
9eef4f980a
Exists in
master
and in
1 other branch
提交代码
Showing 1 changed file with 39 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/MommyBabyMemberIdsResult.java
View file @
8697717
| 1 | +package com.lyms.platform.operate.web.result; | |
| 2 | + | |
| 3 | +import java.util.ArrayList; | |
| 4 | +import java.util.List; | |
| 5 | + | |
| 6 | +/** | |
| 7 | + * Created by Administrator on 2016/10/14 0014. | |
| 8 | + */ | |
| 9 | +public class MommyBabyMemberIdsResult { | |
| 10 | + | |
| 11 | + private Integer errorcode; | |
| 12 | + private String errormsg; | |
| 13 | + | |
| 14 | + private List<Integer> list = new ArrayList<>(); | |
| 15 | + | |
| 16 | + public Integer getErrorcode() { | |
| 17 | + return errorcode; | |
| 18 | + } | |
| 19 | + | |
| 20 | + public void setErrorcode(Integer errorcode) { | |
| 21 | + this.errorcode = errorcode; | |
| 22 | + } | |
| 23 | + | |
| 24 | + public String getErrormsg() { | |
| 25 | + return errormsg; | |
| 26 | + } | |
| 27 | + | |
| 28 | + public void setErrormsg(String errormsg) { | |
| 29 | + this.errormsg = errormsg; | |
| 30 | + } | |
| 31 | + | |
| 32 | + public List<Integer> getList() { | |
| 33 | + return list; | |
| 34 | + } | |
| 35 | + | |
| 36 | + public void setList(List<Integer> list) { | |
| 37 | + this.list = list; | |
| 38 | + } | |
| 39 | +} |