Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
90a36c7c
Commit
90a36c7c
authored
Jul 03, 2023
by
tangwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加接口
parent
509d0a2c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
138 deletions
+0
-138
MonitorFanAlarmInfoController.java
...jxiop/biz/service/impl/MonitorFanAlarmInfoController.java
+0
-134
JxiopExecutorConfig.java
...mos/boot/module/jxiop/biz/config/JxiopExecutorConfig.java
+0
-0
MonitorFanIndicatorImpl.java
...odule/jxiop/biz/service/impl/MonitorFanIndicatorImpl.java
+0
-0
StationDataTask.java
...oin/amos/boot/module/jxiop/biz/tasks/StationDataTask.java
+0
-4
No files found.
amos-boot-system-jxiop/amos-boot-module-jxiop-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/service/impl/MonitorFanAlarmInfoController.java
deleted
100644 → 0
View file @
509d0a2c
package
com
.
yeejoin
.
amos
.
boot
.
module
.
jxiop
.
biz
.
service
.
impl
;
import
com.yeejoin.amos.boot.biz.common.utils.NameUtils
;
import
org.springframework.http.MediaType
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
io.swagger.annotations.ApiOperation
;
import
io.swagger.annotations.Api
;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.web.bind.annotation.RestController
;
import
com.yeejoin.amos.boot.module.jxiop.api.service.IMonitorFanAlarmInfoService
;
import
com.baomidou.mybatisplus.core.conditions.query.QueryWrapper
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
javax.servlet.http.HttpServletRequest
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
org.springframework.web.bind.annotation.*
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yeejoin.amos.boot.module.jxiop.api.entity.MonitorFanAlarmInfo
;
import
java.lang.reflect.Field
;
import
java.util.Arrays
;
/**
*
*
* @author duanwei
* @date 2023-06-30
*/
@RestController
@Api
(
tags
=
"Api"
)
@RequestMapping
(
value
=
"/monitor-fan-alarm-info"
,
produces
=
MediaType
.
APPLICATION_JSON_UTF8_VALUE
)
public
class
MonitorFanAlarmInfoController
{
@Autowired
IMonitorFanAlarmInfoService
iMonitorFanAlarmInfoService
;
/**
* 新增
* @return
*/
@RequestMapping
(
value
=
"/save"
,
method
=
RequestMethod
.
POST
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"新增"
,
notes
=
"新增"
)
public
boolean
saveMonitorFanAlarmInfo
(
HttpServletRequest
request
,
@RequestBody
MonitorFanAlarmInfo
monitorFanAlarmInfo
){
return
iMonitorFanAlarmInfoService
.
save
(
monitorFanAlarmInfo
);
}
/**
* 根据id删除
* @param id
* @return
*/
@RequestMapping
(
value
=
"/{id}"
,
method
=
RequestMethod
.
DELETE
)
@ApiOperation
(
httpMethod
=
"DELETE"
,
value
=
"根据id删除"
,
notes
=
"根据id删除"
)
public
boolean
deleteById
(
HttpServletRequest
request
,
@PathVariable
Long
id
){
return
iMonitorFanAlarmInfoService
.
removeById
(
id
);
}
/**
* 修改
* @return
*/
@RequestMapping
(
value
=
"/updateById"
,
method
=
RequestMethod
.
PUT
)
@ApiOperation
(
httpMethod
=
"PUT"
,
value
=
"修改"
,
notes
=
"修改"
)
public
boolean
updateByIdMonitorFanAlarmInfo
(
HttpServletRequest
request
,
@RequestBody
MonitorFanAlarmInfo
monitorFanAlarmInfo
){
return
iMonitorFanAlarmInfoService
.
updateById
(
monitorFanAlarmInfo
);
}
/**
* 根据id查询
* @param id
* @return
*/
@RequestMapping
(
value
=
"/{id}"
,
method
=
RequestMethod
.
GET
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据id查询"
,
notes
=
"根据id查询"
)
public
MonitorFanAlarmInfo
selectById
(
HttpServletRequest
request
,
@PathVariable
Long
id
){
return
iMonitorFanAlarmInfoService
.
getById
(
id
);
}
/**
* 列表分页查询
* @return
*/
@RequestMapping
(
value
=
"/list"
,
method
=
RequestMethod
.
GET
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"列表分页查询"
,
notes
=
"列表分页查询"
)
public
IPage
<
MonitorFanAlarmInfo
>
listPage
(
String
pageNum
,
String
pageSize
,
MonitorFanAlarmInfo
monitorFanAlarmInfo
){
Page
<
MonitorFanAlarmInfo
>
pageBean
;
QueryWrapper
<
MonitorFanAlarmInfo
>
monitorFanAlarmInfoQueryWrapper
=
new
QueryWrapper
<>();
Class
<?
extends
MonitorFanAlarmInfo
>
aClass
=
monitorFanAlarmInfo
.
getClass
();
Arrays
.
stream
(
aClass
.
getDeclaredFields
()).
forEach
(
field
->
{
try
{
field
.
setAccessible
(
true
);
Object
o
=
field
.
get
(
monitorFanAlarmInfo
);
if
(
o
!=
null
)
{
Class
<?>
type
=
field
.
getType
();
String
name
=
NameUtils
.
camel2Underline
(
field
.
getName
());
if
(
type
.
equals
(
Integer
.
class
))
{
Integer
fileValue
=
(
Integer
)
field
.
get
(
monitorFanAlarmInfo
);
monitorFanAlarmInfoQueryWrapper
.
eq
(
name
,
fileValue
);
}
else
if
(
type
.
equals
(
Long
.
class
))
{
Long
fileValue
=
(
Long
)
field
.
get
(
monitorFanAlarmInfo
);
monitorFanAlarmInfoQueryWrapper
.
eq
(
name
,
fileValue
);
}
else
if
(
type
.
equals
(
String
.
class
))
{
String
fileValue
=
(
String
)
field
.
get
(
monitorFanAlarmInfo
);
monitorFanAlarmInfoQueryWrapper
.
eq
(
name
,
fileValue
);
}
else
{
String
fileValue
=
(
String
)
field
.
get
(
monitorFanAlarmInfo
);
monitorFanAlarmInfoQueryWrapper
.
eq
(
name
,
fileValue
);
}
}
}
catch
(
Exception
e
)
{
}
});
IPage
<
MonitorFanAlarmInfo
>
page
;
if
(
StringUtils
.
isBlank
(
pageNum
)
||
StringUtils
.
isBlank
(
pageSize
))
{
pageBean
=
new
Page
<>(
0
,
Long
.
MAX_VALUE
);
}
else
{
pageBean
=
new
Page
<>(
Integer
.
parseInt
(
pageNum
),
Integer
.
parseInt
(
pageSize
));
}
page
=
iMonitorFanAlarmInfoService
.
page
(
pageBean
,
monitorFanAlarmInfoQueryWrapper
);
return
page
;
}
}
amos-boot-system-jxiop/amos-boot-module-jxiop-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/config/JxiopExecutorConfig.java
→
amos-boot-system-jxiop/amos-boot-module-jxiop-
monitor-
biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/config/JxiopExecutorConfig.java
View file @
90a36c7c
File moved
amos-boot-system-jxiop/amos-boot-module-jxiop-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/service/impl/MonitorFanIndicatorImpl.java
→
amos-boot-system-jxiop/amos-boot-module-jxiop-
monitor-
biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/service/impl/MonitorFanIndicatorImpl.java
View file @
90a36c7c
File moved
amos-boot-system-jxiop/amos-boot-module-jxiop-biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/tasks/StationDataTask.java
→
amos-boot-system-jxiop/amos-boot-module-jxiop-
monitor-
biz/src/main/java/com/yeejoin/amos/boot/module/jxiop/biz/tasks/StationDataTask.java
View file @
90a36c7c
...
@@ -22,10 +22,6 @@ public class StationDataTask {
...
@@ -22,10 +22,6 @@ public class StationDataTask {
@Scheduled
(
cron
=
"${station.task.cron}"
)
@Scheduled
(
cron
=
"${station.task.cron}"
)
public
void
getStationDataTask
(){
public
void
getStationDataTask
(){
//获取所有场站信息
//获取所有场站信息
stationDataTask
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment