fix: 8 remaining compilation errors
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
package com.openhis.application.service;
|
||||
|
||||
public interface OrderVerificationService {
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.openhis.web.appointment.service;
|
||||
|
||||
public interface AppointmentService {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.openhis.web.inpatient.service;
|
||||
|
||||
public interface DictConfigService {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.openhis.web.inpatient.service;
|
||||
|
||||
public interface DispensingService {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.openhis.web.inpatient.service;
|
||||
|
||||
public interface SurgeryRequestService {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.openhis.web.inpatient.service;
|
||||
|
||||
public interface VitalSignsService {
|
||||
}
|
||||
Reference in New Issue
Block a user