xiaochan 4 months ago
parent
commit
0e68297fd7
5 changed files with 56 additions and 1 deletions
  1. 0 1
      .gitignore
  2. 10 0
      HELP.md
  3. 1 0
      thyy-beinhospital/HELP.md
  4. 18 0
      thyy-emr-query/HELP.md
  5. 27 0
      thyy-thirdpart-api/HELP.md

+ 0 - 1
.gitignore

@@ -1,4 +1,3 @@
-HELP.md
 target/
 !.mvn/wrapper/maven-wrapper.jar
 !**/src/main/**/target/

+ 10 - 0
HELP.md

@@ -0,0 +1,10 @@
+# 注意如果修改了 utils 包,那么就需要全部install,并且修改版本
+
+| 服务名称 | 端口  |
+| -------- | ----- |
+| archive  | 20921 |
+| socket   | 20922 |
+| haikang  | 20923 |
+
+
+

+ 1 - 0
thyy-beinhospital/HELP.md

@@ -0,0 +1 @@
+# 住院服务

+ 18 - 0
thyy-emr-query/HELP.md

@@ -0,0 +1,18 @@
+# Getting Started
+
+### Reference Documentation
+
+For further reference, please consider the following sections:
+
+* [Official Apache Maven documentation](https://maven.apache.org/guides/index.html)
+* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/3.4.3/maven-plugin)
+* [Create an OCI image](https://docs.spring.io/spring-boot/3.4.3/maven-plugin/build-image.html)
+
+### Maven Parent overrides
+
+Due to Maven's design, elements are inherited from the parent POM to the project POM.
+While most of the inheritance is fine, it also inherits unwanted elements like `<license>` and `<developers>` from the
+parent.
+To prevent this, the project POM contains empty overrides for these elements.
+If you manually switch to a different parent and actually want the inheritance, you need to remove those overrides.
+

+ 27 - 0
thyy-thirdpart-api/HELP.md

@@ -0,0 +1,27 @@
+# 关于tts语言生成的配置注意
+
+1. 需要实现 这个接口
+    ```java
+    @Slf4j
+    // 服务的名字就是配置文件中的名字
+    @Service(value = "xf")
+    public class XfTtsApi implements Tts {
+        
+    }
+    ```
+2. 配置文件中
+   ```yaml
+   thyy:
+     tts:
+       directory: D:\a.snapshot\resource\voice #文件存放的路径
+       speech-url: http://172.16.32.160:8080/resource/voice # 生成的地址
+       config:
+         xf:  # 这个key就是上面服务的名字不要写错
+           app-id: fdde4cef
+           api-key: 95a78dd3cfcc4863e3c003352ca8ec65
+           api-secret: OWZjZGE4NjI3MDdkYzg4ZjllY2VjNGQ0
+         xxx:
+           app-id: xxxx
+           api-key: xxxxx
+           api-secret: xxxxx
+   ```