Commit 42b4a489 authored by maqing's avatar maqing

日常生活活动能力查询

parent 55f4ea59
......@@ -8,6 +8,7 @@ import com.hungraim.ltc.pojo.entity.SysConfig.ChFndAttach;
import com.hungraim.ltc.pojo.entity.assessment.ChAprReport;
import com.hungraim.ltc.pojo.entity.assessment.ChAprTask;
import com.hungraim.ltc.pojo.entity.assessment.ChRefuseReason;
import com.hungraim.ltc.pojo.entity.assessment.ChTaskReportFractionDtl;
import com.hungraim.ltc.pojo.entity.disable.ChCfgSrvDisableLevel;
import com.hungraim.ltc.pojo.vo.ReportUpdateVO;
import com.hungraim.ltc.pojo.vo.assessment.*;
......@@ -625,4 +626,16 @@ public class TaskController {
}
return resultList;
}
/**
* 日常生活活动能力获取数据
* @return
* @author mq
*/
@RequestMapping(value= "/chIpad/taskReportFractionDtlQueryList")
@ResponseBody
public List<ChTaskReportFractionDtl> taskReportFractionDtlQueryList() throws Exception {
List<ChTaskReportFractionDtl> resultList= taskService.taskReportFractionDtlQueryList();
return resultList;
}
}
package com.hungraim.ltc.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.hungraim.ltc.pojo.entity.assessment.ChTaskReportFractionDtl;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
@Mapper
@Repository
public interface ChTaskReportFractionDtlMapper extends BaseMapper<ChTaskReportFractionDtl> {
}
......@@ -6,6 +6,7 @@ import com.hungraim.ltc.pojo.entity.SysConfig.ChFndAttach;
import com.hungraim.ltc.pojo.entity.assessment.ChAprReport;
import com.hungraim.ltc.pojo.entity.assessment.ChAprTask;
import com.hungraim.ltc.pojo.entity.assessment.ChRefuseReason;
import com.hungraim.ltc.pojo.entity.assessment.ChTaskReportFractionDtl;
import com.hungraim.ltc.pojo.entity.disable.ChCfgSrvDisableLevel;
import com.hungraim.ltc.pojo.vo.assessment.*;
import com.hungraim.ltc.util.Result;
......@@ -82,4 +83,6 @@ public interface TaskService {
ChAprReport queryAprReportForWUXI(String taskId) throws TppesApiException;
IPage<ChAprTask> apprTaskDetailInfo(String appointStartTime, String appointEndTime, String status, String taskGroupNo, Integer pageNo, Integer pageSize) throws TppesApiException;
List<ChTaskReportFractionDtl> taskReportFractionDtlQueryList();
}
......@@ -48,6 +48,8 @@ public class TaskServiceImpl implements TaskService {
private final RefuseReasonMapper refuseReasonMapper;
private final AttachFeignService attachFeignService;
private final ChTaskReportFractionDtlMapper chTaskReportFractionDtlMapper;
/**
* 评定任务分配列表
*
......@@ -628,4 +630,9 @@ public class TaskServiceImpl implements TaskService {
return chAprTaskPage;
}
@Override
public List<ChTaskReportFractionDtl> taskReportFractionDtlQueryList() {
return chTaskReportFractionDtlMapper.selectList(null);
}
}
package com.hungraim.ltc.pojo.entity.assessment;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.KeySequence;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.Date;
/**
* 日常生活活动能力-CH_TASK_REPORT_FRACTION_Dtl表
* @author MQ
*/
@Data
@TableName("CH_TASK_REPORT_FRACTION_DTL")
@KeySequence("SEQ_CH_TASK_REPORT_FRACTION_DTL")
public class ChTaskReportFractionDtl {
/**
* ID
*/
@TableId(value = "TASK_REPORT_FRACTION_ID", type = IdType.INPUT)
private Integer taskReportFractionId;
/**
* 评定报告序号
*/
private String taskReportNum;
/**
* 评定报告指标
*/
private String taskReportProxy;
/**
* 分数
*/
private String taskReportFraction;
/**
* 标准
*/
private String taskReportEvaluation;
/**
* 首次创建时间
*/
private Date fcd;
/**
* 首次创建人
*/
private String fcu;
/**
* 最后修改时间
*/
private String lcd;
/**
* 最后修改人
*/
private Integer lcu;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment