|
@ -2,7 +2,10 @@ package com.ccsens.tcm.api; |
|
|
|
|
|
|
|
|
import com.ccsens.cloudutil.annotation.MustLogin; |
|
|
import com.ccsens.cloudutil.annotation.MustLogin; |
|
|
import com.ccsens.tcm.bean.dto.ConRecDto; |
|
|
import com.ccsens.tcm.bean.dto.ConRecDto; |
|
|
|
|
|
import com.ccsens.tcm.bean.dto.StatisticDto; |
|
|
import com.ccsens.tcm.bean.vo.ConRecVo; |
|
|
import com.ccsens.tcm.bean.vo.ConRecVo; |
|
|
|
|
|
import com.ccsens.tcm.bean.vo.StatisticVo; |
|
|
|
|
|
import com.ccsens.tcm.service.IConferenceService; |
|
|
import com.ccsens.tcm.service.IPatientService; |
|
|
import com.ccsens.tcm.service.IPatientService; |
|
|
import com.ccsens.util.JsonResponse; |
|
|
import com.ccsens.util.JsonResponse; |
|
|
import com.ccsens.util.bean.dto.QueryDto; |
|
|
import com.ccsens.util.bean.dto.QueryDto; |
|
@ -18,6 +21,7 @@ import org.springframework.web.bind.annotation.RequestMethod; |
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
|
|
|
|
import javax.annotation.Resource; |
|
|
import javax.annotation.Resource; |
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* @author wang |
|
|
* @author wang |
|
@ -29,6 +33,10 @@ import javax.annotation.Resource; |
|
|
public class ConferenceRecordsController { |
|
|
public class ConferenceRecordsController { |
|
|
@Resource |
|
|
@Resource |
|
|
private IPatientService patientService; |
|
|
private IPatientService patientService; |
|
|
|
|
|
@Resource |
|
|
|
|
|
private IConferenceService conferenceService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@MustLogin |
|
|
@MustLogin |
|
|
@ApiOperation(value = "查询会议记录", notes = "w:根据会议记录查询条件查询会议记录") |
|
|
@ApiOperation(value = "查询会议记录", notes = "w:根据会议记录查询条件查询会议记录") |
|
|
@RequestMapping(value = "/selConRec", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
|
@RequestMapping(value = "/selConRec", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"}) |
|
@ -38,4 +46,15 @@ public class ConferenceRecordsController { |
|
|
log.info("查询会议记录基本信息成功"); |
|
|
log.info("查询会议记录基本信息成功"); |
|
|
return JsonResponse.newInstance().ok(selConRecVoPageInfo); |
|
|
return JsonResponse.newInstance().ok(selConRecVoPageInfo); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// @MustLogin
|
|
|
|
|
|
// @ApiOperation(value = "添加会议记录", notes = "zy:")
|
|
|
|
|
|
// @RequestMapping(value = "/save", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8"})
|
|
|
|
|
|
// public JsonResponse<ConRecVo.SelConRecVo> saveConference(@ApiParam @Validated @RequestBody QueryDto<ConRecDto.SaveConference> params) {
|
|
|
|
|
|
// log.info("统计每个医院的完成情况:{}",params);
|
|
|
|
|
|
// ConRecVo.SelConRecVo saveConference = patientService.saveConference(params.getParam());
|
|
|
|
|
|
// log.info("查找每个医院的病例完成情况");
|
|
|
|
|
|
// return JsonResponse.newInstance().ok(saveConference);
|
|
|
|
|
|
// }
|
|
|
} |
|
|
} |
|
|