Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
zrch-risk-39
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Administrator
zrch-risk-39
Commits
5d921ef0
提交
5d921ef0
authored
2月 25, 2026
作者:
kxjia
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
完善风险监测
上级
b3bccb9d
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
6 行增加
和
18 行删除
+6
-18
MetricMonitorSetHistory.java
...cg/modules/stm/metric/entity/MetricMonitorSetHistory.java
+0
-8
MetricStatReport.java
...org/jeecg/modules/stm/metric/entity/MetricStatReport.java
+4
-0
MetricMonitorSetHightMapper.xml
...les/stm/metric/mapper/xml/MetricMonitorSetHightMapper.xml
+0
-6
CreateWordUtil.java
...main/java/org/jeecg/modules/stm/utils/CreateWordUtil.java
+1
-1
MetricStatReportMapper.xml
.../main/resources/mapping/metric/MetricStatReportMapper.xml
+1
-1
LoginController.java
.../org/jeecg/modules/system/controller/LoginController.java
+0
-2
没有找到文件。
zrch-risk-server-39/jeecg-module-system/jeecg-module-stm/src/main/java/org/jeecg/modules/stm/metric/entity/MetricMonitorSetHistory.java
浏览文件 @
5d921ef0
...
...
@@ -32,7 +32,6 @@ public class MetricMonitorSetHistory implements Serializable {
/**id*/
@TableId
(
type
=
IdType
.
AUTO
)
private
java
.
lang
.
Integer
id
;
/**指标名称*/
...
...
@@ -147,20 +146,13 @@ public class MetricMonitorSetHistory implements Serializable {
private
java
.
lang
.
String
noticeReceiveMiddle
;
@Excel
(
name
=
"高风险消息接收人"
,
width
=
15
)
private
java
.
lang
.
String
noticeReceiveHight
;
private
java
.
lang
.
String
createBy
;
private
java
.
util
.
Date
createTime
;
@TableField
(
exist
=
false
)
private
String
domainName
;
}
zrch-risk-server-39/jeecg-module-system/jeecg-module-stm/src/main/java/org/jeecg/modules/stm/metric/entity/MetricStatReport.java
浏览文件 @
5d921ef0
package
org
.
jeecg
.
modules
.
stm
.
metric
.
entity
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
...
...
@@ -108,4 +109,7 @@ public class MetricStatReport implements Serializable {
@Dict
(
dicCode
=
"metric_sta_method"
)
private
Integer
statMethod
;
@TableField
(
exist
=
false
)
private
String
[]
otherData
;
}
zrch-risk-server-39/jeecg-module-system/jeecg-module-stm/src/main/java/org/jeecg/modules/stm/metric/mapper/xml/MetricMonitorSetHightMapper.xml
deleted
100644 → 0
浏览文件 @
b3bccb9d
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"org.jeecg.modules.stm.metric.mapper.MetricMonitorSetHightMapper"
>
</mapper>
\ No newline at end of file
zrch-risk-server-39/jeecg-module-system/jeecg-module-stm/src/main/java/org/jeecg/modules/stm/utils/CreateWordUtil.java
浏览文件 @
5d921ef0
...
...
@@ -172,7 +172,7 @@ public class CreateWordUtil {
out
.
flush
();
out
.
close
();
template
.
close
();
return
StmConstans
.
METRIC_REPORT_SAVE_PATH
+
File
.
separator
+
fileName
;
return
StmConstans
.
METRIC_REPORT_SAVE_PATH
+
"/"
+
fileName
;
}
catch
(
Exception
e
)
{
throw
e
;
}
finally
{
...
...
zrch-risk-server-39/jeecg-module-system/jeecg-module-stm/src/main/resources/mapping/metric/MetricStatReportMapper.xml
浏览文件 @
5d921ef0
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"org.stm.metric.mapper.MetricStatReportMapper"
>
<mapper
namespace=
"org.
jeecg.modules.
stm.metric.mapper.MetricStatReportMapper"
>
<select
id=
"queryMetricStatByDomain"
resultType=
"java.util.Map"
>
SELECT
IFNULL(D.domain_code, -1) AS code,
...
...
zrch-risk-server-39/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/system/controller/LoginController.java
浏览文件 @
5d921ef0
...
...
@@ -75,9 +75,7 @@ public class LoginController {
* 线程池用于异步发送纪要
*/
public
static
ExecutorService
cachedThreadPool
=
new
ShiroThreadPoolExecutor
(
0
,
1024
,
60L
,
TimeUnit
.
SECONDS
,
new
SynchronousQueue
<>());
@Operation
(
summary
=
"登录接口"
)
@RequestMapping
(
value
=
"/login"
,
method
=
RequestMethod
.
POST
)
public
Result
<
JSONObject
>
login
(
@RequestBody
SysLoginModel
sysLoginModel
,
HttpServletRequest
request
){
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论