Commit 9627fa006c8a7a44d248cb6526a7e7aee0d52e3c
1 parent
82fa727ef9
Exists in
master
and in
4 other branches
孤独症诊断初筛套餐内容3
Showing 2 changed files with 12 additions and 2 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/BabyAutismPrimaryScreening.java
View file @
9627fa0
| ... | ... | @@ -205,6 +205,16 @@ |
| 205 | 205 | private String global; |
| 206 | 206 | private String globalStr; |
| 207 | 207 | |
| 208 | + private String nextCheckMonthId; | |
| 209 | + | |
| 210 | + public String getNextCheckMonthId() { | |
| 211 | + return nextCheckMonthId; | |
| 212 | + } | |
| 213 | + | |
| 214 | + public void setNextCheckMonthId(String nextCheckMonthId) { | |
| 215 | + this.nextCheckMonthId = nextCheckMonthId; | |
| 216 | + } | |
| 217 | + | |
| 208 | 218 | public String getBabySexStr() { |
| 209 | 219 | return babySexStr; |
| 210 | 220 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/DoubleSievingController.java
View file @
9627fa0
| ... | ... | @@ -3,13 +3,13 @@ |
| 3 | 3 | import com.lyms.platform.common.annotation.TokenRequired; |
| 4 | 4 | import com.lyms.platform.common.base.BaseController; |
| 5 | 5 | import com.lyms.platform.common.base.LoginContext; |
| 6 | +import com.lyms.platform.common.dao.BaseQuery; | |
| 6 | 7 | import com.lyms.platform.common.result.BaseResponse; |
| 7 | 8 | import com.lyms.platform.operate.web.facade.DoubleSievingFacade; |
| 8 | 9 | import com.lyms.platform.pojo.BabyAutismDoubleSieving; |
| 9 | 10 | import org.slf4j.Logger; |
| 10 | 11 | import org.slf4j.LoggerFactory; |
| 11 | 12 | import org.springframework.beans.factory.annotation.Autowired; |
| 12 | -import org.springframework.data.domain.PageRequest; | |
| 13 | 13 | import org.springframework.stereotype.Controller; |
| 14 | 14 | import org.springframework.web.bind.annotation.*; |
| 15 | 15 | |
| ... | ... | @@ -72,7 +72,7 @@ |
| 72 | 72 | @ResponseBody |
| 73 | 73 | @TokenRequired |
| 74 | 74 | @RequestMapping(value = "/queryDateListPage",method = RequestMethod.GET) |
| 75 | - public BaseResponse queryDateListPage(BabyAutismDoubleSieving babyAutismDoubleSieving, PageRequest pageRequest, HttpServletRequest request) { | |
| 75 | + public BaseResponse queryDateListPage(BabyAutismDoubleSieving babyAutismDoubleSieving, BaseQuery pageRequest, HttpServletRequest request) { | |
| 76 | 76 | LoginContext loginState = (LoginContext) request.getAttribute("loginContext"); |
| 77 | 77 | return doubleSievingFacade.queryDateListPage(babyAutismDoubleSieving,pageRequest,loginState.getId()); |
| 78 | 78 | } |