feat: implement doctor schedule module, add detail fields to doctor profile, and integrate new appointment API client

This commit is contained in:
2026-07-23 19:34:02 +07:00
parent 107e191e93
commit 6d84979f03
111 changed files with 5138 additions and 288 deletions
+13
View File
@@ -0,0 +1,13 @@
package vn.sis.appointment;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
final class Urls {
private Urls() {
}
static String encodePathSegment(String value) {
return URLEncoder.encode(value, StandardCharsets.UTF_8).replace("+", "%20");
}
}