fix: comprehensive stub fixes for compilation - add missing fields, methods, service interfaces

- Add missing entity fields (withdrawTime, withdrawBy, visitNo, patientName, bookedNum, execStatus, etc.)
- Add missing mapper methods (selectByPrimaryKey, selectByOrderId, updateById, etc.)
- Fix R.java to be generic with ok() method
- Fix PageResult with proper getters/setters
- Add missing service interfaces in all web modules
- Fix QueueQueryDto type mismatch
- Fix OrderServiceImpl to use String constants directly
- Fix OutpatientRegistrationServiceImpl int/String status
- Fix OrderVerificationServiceImpl import and interface
- Add AdmScheduleSlot entity, fix mappers
This commit is contained in:
2026-05-27 10:16:51 +08:00
parent b4de4d32de
commit b0f7b301f9
47 changed files with 306 additions and 579 deletions

View File

@@ -0,0 +1,5 @@
package com.openhis.web.system.service;
public interface DictService {
String getDictLabel(String dictType, String dictValue);
}

View File

@@ -0,0 +1,5 @@
package com.openhis.web.system.service;
public interface SysConfigService {
String getConfigValue(String key);
}