|
@ -1,13 +1,16 @@
|
|
|
package com.yihu.jw.care.endpoint.admin;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
import com.yihu.jw.care.dao.label.BaseCapacityLabelDao;
|
|
|
import com.yihu.jw.care.service.common.CommomService;
|
|
|
import com.yihu.jw.care.service.device.DevicePatientFaceService;
|
|
|
import com.yihu.jw.care.service.patient.CarePatientService;
|
|
|
import com.yihu.jw.care.util.DingdingUtil;
|
|
|
import com.yihu.jw.entity.base.patient.BasePatientDO;
|
|
|
import com.yihu.jw.entity.care.label.BaseCapacityLabelDO;
|
|
|
import com.yihu.jw.patient.dao.BasePatientDao;
|
|
|
import com.yihu.jw.restmodel.web.Envelop;
|
|
|
import com.yihu.jw.restmodel.web.ObjEnvelop;
|
|
|
import com.yihu.jw.restmodel.web.endpoint.EnvelopRestEndpoint;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
@ -50,6 +53,21 @@ public class CommonEndpoint extends EnvelopRestEndpoint {
|
|
|
private DingdingUtil dingdingUtil;
|
|
|
@Autowired
|
|
|
private CarePatientService carePatientService;
|
|
|
@Autowired
|
|
|
private DevicePatientFaceService patientFaceService;
|
|
|
|
|
|
@GetMapping(value = "open/findFaceRecord")
|
|
|
@ApiOperation(value = "获取人脸数据")
|
|
|
public ObjEnvelop findFaceRecord(String patient, String day) {
|
|
|
try {
|
|
|
JSONObject json = new JSONObject();
|
|
|
patientFaceService.findFaceRecord(patient,day,json);
|
|
|
return ObjEnvelop.getSuccess("初始化成功",json);
|
|
|
} catch (Exception e) {
|
|
|
return failedObjEnvelopException2(e);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
@GetMapping(value = "open/initOldTmp2")
|
|
|
@ApiOperation(value = "初始化签约老人")
|