liusheng
2025-04-28 b5a1835f3ed1763b3d0b66f8ccff0bbd4d67dd5b
ruoyi-quartz/src/main/java/com/ruoyi/quartz/task/RyTask.java
@@ -143,6 +143,9 @@
    @Value("${appid}")
    private String appid;
    @Value("${server.port}")
    private String port;
    public void ryMultipleParams(String s, Boolean b, Long l, Double d, Integer i) {
        System.out.println(StringUtils.format("执行多参方法: 字符串类型{},布尔类型{},长整型{},浮点型{},整形{}", s, b, l, d, i));
    }
@@ -248,11 +251,13 @@
     * 处理患者信息,进入子任务表
     */
    public void dealOutHospInfo() {
        if (port.equals("8095")) {
        //出院表
        iPatMedInhospService.dealOutHospInfo();
        //门诊表
        if (visitHosp != 1) {
            iPatMedOuthospService.dealOutpatientInfo();
            }
        }
    }
@@ -261,17 +266,19 @@
     * 处理手术信息,进入子任务表
     */
    public void dealOperationInfo() {
        iPatMedOperationService.dealOperationInfo();
        if (port.equals("8095")) iPatMedOperationService.dealOperationInfo();
    }
    /**
     * 处理患者信息,进入子任务表(微信小程序)
     */
    public void dealOutHospInfoXHC() {
        if (port.equals("8095")) {
        PatMedInhosp patMedInhosp = new PatMedInhosp();
        //获取未处理的数据
        List<ServicePatientTemp> servicePatientTemps = iServicePatientTempService.selectServicePatientTempList(new ServicePatientTemp());
        }
    }