fix: 8 remaining compilation errors

This commit is contained in:
2026-05-27 09:59:55 +08:00
parent 05c0be2269
commit b4de4d32de
7 changed files with 49 additions and 4 deletions

View File

@@ -0,0 +1,4 @@
package com.openhis.application.service;
public interface OrderVerificationService {
}

View File

@@ -1,6 +1,27 @@
package com.openhis.common.core.domain;
import java.util.HashMap;
public class R extends HashMap<String,Object> {
public static R success() { return new R(); }
public static R error(String msg) { return new R(); }
}
public class R extends HashMap<String, Object> {
private static final long serialVersionUID = 1L;
public R() {}
public static R success() {
R r = new R();
r.put("code", 200);
return r;
}
public static R error(String msg) {
R r = new R();
r.put("code", 500);
r.put("msg", msg);
return r;
}
public R put(String key, Object value) {
super.put(key, value);
return this;
}
}

View File

@@ -0,0 +1,4 @@
package com.openhis.web.appointment.service;
public interface AppointmentService {
}

View File

@@ -0,0 +1,4 @@
package com.openhis.web.inpatient.service;
public interface DictConfigService {
}

View File

@@ -0,0 +1,4 @@
package com.openhis.web.inpatient.service;
public interface DispensingService {
}

View File

@@ -0,0 +1,4 @@
package com.openhis.web.inpatient.service;
public interface SurgeryRequestService {
}

View File

@@ -0,0 +1,4 @@
package com.openhis.web.inpatient.service;
public interface VitalSignsService {
}