Compare commits
No commits in common. '5fcf852cc7bc69b19c6623790d34e8a069d4ab44' and '7e70514922b45dac34e29c3c772caaeea5835d6f' have entirely different histories.
5fcf852cc7
...
7e70514922
@ -1,34 +0,0 @@
|
|||||||
package com.example.duplicate.controller.vo;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @ClassName medicalCompensateVo
|
|
||||||
* @Description 补偿返回
|
|
||||||
* @Author linjj
|
|
||||||
* @Date 2025/7/25 14:48
|
|
||||||
* @Version 1.0
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class medicalCompensateVo {
|
|
||||||
//采集器id
|
|
||||||
private String sysFlag;
|
|
||||||
//任务id
|
|
||||||
private String otherId;
|
|
||||||
private String id;
|
|
||||||
//住院号
|
|
||||||
private String inpNo;
|
|
||||||
//住院次数
|
|
||||||
private String visitId;
|
|
||||||
//记帐号
|
|
||||||
private String patientId;
|
|
||||||
//出院科室
|
|
||||||
private String deptName;
|
|
||||||
//出院时间
|
|
||||||
private String dischargeDateTime;
|
|
||||||
//患者姓名
|
|
||||||
private String name;
|
|
||||||
//住院时间
|
|
||||||
private String admissionDateTime;
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,31 +0,0 @@
|
|||||||
package com.example.quartz;
|
|
||||||
|
|
||||||
import com.example.duplicate.service.MedicalAdviceService;
|
|
||||||
import org.quartz.JobExecutionContext;
|
|
||||||
import org.quartz.JobExecutionException;
|
|
||||||
import org.springframework.scheduling.quartz.QuartzJobBean;
|
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @ClassName DailyTaskQuartz
|
|
||||||
* @Description 补偿首页数据
|
|
||||||
* @Author linjj
|
|
||||||
* @Date 2025/7/25 14:24
|
|
||||||
* @Version 1.0
|
|
||||||
*/
|
|
||||||
public class DailyTaskQuartz extends QuartzJobBean {
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private MedicalAdviceService medicalAdviceService;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 每天补偿首页未完成的任务
|
|
||||||
* @param jobExecutionContext
|
|
||||||
* @throws JobExecutionException
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
protected void executeInternal(JobExecutionContext jobExecutionContext) throws JobExecutionException {
|
|
||||||
medicalAdviceService.medicalCompensate();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue