资讯富文本配置,编码生成通用信息

This commit is contained in:
gognqingkai 2024-04-16 15:43:18 +08:00
parent 9e73d21565
commit 8a132c21d3
2 changed files with 18 additions and 1 deletions

View File

@ -26,6 +26,8 @@ xinelu:
script-file-url: /scriptFileUrl
# 获取管理端富文本的上传路径
rich-text-picture-url: /richTextPictureUrl
# 资讯富文本的上传路径
info-rich-text-picture-url: /infoRichTextPictureUrl
# 开发环境配置
server:
@ -103,7 +105,7 @@ token:
# 令牌有效期默认30分钟
expireTime: 30
# 请求拦截白名单
ant-matchers: /postDischarge/**,/testMobile/**
ant-matchers: /postDischarge/**,/testMobile/**,/postDischargeApplet/**
## MyBatis-Plus配置
mybatis-plus:

View File

@ -313,4 +313,19 @@ public class Constants {
* 返回成功状态码
*/
public static final String OK = "ok";
/**
* 资讯分类编码前缀
*/
public static final String INFO_CATEGORY_CODE = "ICC";
/**
* 资讯编码前缀
*/
public static final String INFO_CODE = "IC";
/**
* 科室编码前缀
*/
public static final String DEPARTMENT_CODE = "HDC";
}