|
@ -225,6 +225,7 @@ public class DoctorMessageController extends BaseController {
|
|
@RequestMapping(value = "getEduArticleMessage", method = RequestMethod.GET)
|
|
@RequestMapping(value = "getEduArticleMessage", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
@ResponseBody
|
|
@ApiOperation("获取文章审核消息")
|
|
@ApiOperation("获取文章审核消息")
|
|
|
|
@ObserverRequired
|
|
public String getEduArticleMessage(@ApiParam(name = "type", value = "文章审核的时候必传,消息类型,14:提交文章审核,15:审核结果")
|
|
public String getEduArticleMessage(@ApiParam(name = "type", value = "文章审核的时候必传,消息类型,14:提交文章审核,15:审核结果")
|
|
@RequestParam(value = "type", required = false) Integer type,
|
|
@RequestParam(value = "type", required = false) Integer type,
|
|
@ApiParam(value = "第几页", defaultValue = "1")
|
|
@ApiParam(value = "第几页", defaultValue = "1")
|
|
@ -243,6 +244,7 @@ public class DoctorMessageController extends BaseController {
|
|
@RequestMapping(value = "getHealthIndexMessage", method = RequestMethod.GET)
|
|
@RequestMapping(value = "getHealthIndexMessage", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
@ResponseBody
|
|
@ApiOperation("获取超标指标消息--根据患者分组")
|
|
@ApiOperation("获取超标指标消息--根据患者分组")
|
|
|
|
@ObserverRequired
|
|
public String getHealthIndexMessage() throws Exception {
|
|
public String getHealthIndexMessage() throws Exception {
|
|
try {
|
|
try {
|
|
Map<String,List<Map<String, Object>>> list = messageService.getHealthIndexMessage(getUID()); //"D20161008003"
|
|
Map<String,List<Map<String, Object>>> list = messageService.getHealthIndexMessage(getUID()); //"D20161008003"
|
|
@ -256,6 +258,7 @@ public class DoctorMessageController extends BaseController {
|
|
@RequestMapping(value = "getHealthIndexMessageByPatient", method = RequestMethod.GET)
|
|
@RequestMapping(value = "getHealthIndexMessageByPatient", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
@ResponseBody
|
|
@ApiOperation("获取患者超标指标消息")
|
|
@ApiOperation("获取患者超标指标消息")
|
|
|
|
@ObserverRequired
|
|
public String getHealthIndexMessageByPatient(@ApiParam(name = "patient", value = "患者代码", defaultValue = "P20161008001")
|
|
public String getHealthIndexMessageByPatient(@ApiParam(name = "patient", value = "患者代码", defaultValue = "P20161008001")
|
|
@RequestParam(value = "patient", required = true) String patient,
|
|
@RequestParam(value = "patient", required = true) String patient,
|
|
@ApiParam(name = "type", value = "健康指标类型1血糖,2血压,3体重", defaultValue = "1")
|
|
@ApiParam(name = "type", value = "健康指标类型1血糖,2血压,3体重", defaultValue = "1")
|