|
@ -314,7 +314,8 @@ public class ChronicDiseaseController extends EnvelopRestEndpoint {
|
|
|
@RequestMapping(value = "findLatelyIndex", method = RequestMethod.GET)
|
|
|
@ApiOperation("获取居民最近一次体征记录")
|
|
|
public Envelop findLatelyIndex(@ApiParam(name = "patient", value = "居民code") @RequestParam(value = "patient", required = true) String patient,
|
|
|
@ApiParam(name = "type", value = "类型(1血糖,2血压,3体重/身高/BMI,4腰围,5心率,6体温,7呼吸)") @RequestParam(value = "type", required = true) String type) {
|
|
|
@ApiParam(name = "type", value = "类型(1血糖,2血压,3体重/身高/BMI,4腰围,5心率,6体温,7呼吸)")
|
|
|
@RequestParam(value = "type", required = false) String type) {
|
|
|
try {
|
|
|
return ObjEnvelop.getSuccess( "查询成功", doctorSchemeService.findLatelyIndex(patient, type));
|
|
|
} catch (Exception e) {
|