Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zhengyuan-danger-chemistry-manage
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
耿迪迪
zhengyuan-danger-chemistry-manage
Commits
3d8f2873
Commit
3d8f2873
authored
Oct 22, 2022
by
纪泽龙
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://111.61.77.35:9999/gengdidi/zhengyuan-danger-chemistry-manage
parents
c8b2775b
82b23f24
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
41 additions
and
0 deletions
+41
-0
TStaningBookController.java
...g/web/controller/hiddenDanger/TStaningBookController.java
+10
-0
TStaningBookMapper.java
...ain/java/com/zehong/system/mapper/TStaningBookMapper.java
+4
-0
ITStaningBookService.java
.../java/com/zehong/system/service/ITStaningBookService.java
+9
-0
TStaningBookServiceImpl.java
...m/zehong/system/service/impl/TStaningBookServiceImpl.java
+6
-0
TStaningBookMapper.xml
...m/src/main/resources/mapper/system/TStaningBookMapper.xml
+12
-0
No files found.
danger-manage-admin/src/main/java/com/zehong/web/controller/hiddenDanger/TStaningBookController.java
View file @
3d8f2873
...
...
@@ -100,4 +100,14 @@ public class TStaningBookController extends BaseController
{
return
toAjax
(
tStaningBookService
.
deleteTStaningBookByIds
(
bookIds
));
}
/**
* 统计,按年、月、日统计发现数量和已处置数量
* 日,为当日;月为当前30日内;年为当前365日内
* @return
*/
@GetMapping
(
value
=
"/statics"
)
public
AjaxResult
statics
(
String
type
){
return
AjaxResult
.
success
(
tStaningBookService
.
statics
(
type
));
}
}
danger-manage-system/src/main/java/com/zehong/system/mapper/TStaningBookMapper.java
View file @
3d8f2873
package
com
.
zehong
.
system
.
mapper
;
import
java.util.List
;
import
java.util.Map
;
import
com.zehong.system.domain.TStaningBook
;
/**
...
...
@@ -58,4 +60,6 @@ public interface TStaningBookMapper
* @return 结果
*/
public
int
deleteTStaningBookByIds
(
Long
[]
bookIds
);
public
Map
statics
(
String
type
);
}
danger-manage-system/src/main/java/com/zehong/system/service/ITStaningBookService.java
View file @
3d8f2873
package
com
.
zehong
.
system
.
service
;
import
java.util.List
;
import
java.util.Map
;
import
com.zehong.system.domain.TStaningBook
;
/**
...
...
@@ -58,4 +60,11 @@ public interface ITStaningBookService
* @return 结果
*/
public
int
deleteTStaningBookById
(
Long
bookId
);
/**
* 统计数量
* @param type
* @return
*/
public
Map
statics
(
String
type
);
}
danger-manage-system/src/main/java/com/zehong/system/service/impl/TStaningBookServiceImpl.java
View file @
3d8f2873
package
com
.
zehong
.
system
.
service
.
impl
;
import
java.util.List
;
import
java.util.Map
;
import
com.zehong.common.core.domain.entity.SysDept
;
import
com.zehong.common.utils.DateUtils
;
...
...
@@ -110,4 +111,9 @@ public class TStaningBookServiceImpl implements ITStaningBookService
{
return
tStaningBookMapper
.
deleteTStaningBookById
(
bookId
);
}
@Override
public
Map
statics
(
String
type
)
{
return
tStaningBookMapper
.
statics
(
type
);
}
}
danger-manage-system/src/main/resources/mapper/system/TStaningBookMapper.xml
View file @
3d8f2873
...
...
@@ -180,4 +180,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{bookId}
</foreach>
</delete>
<select
id=
"statics"
parameterType=
"String"
resultType=
"Map"
>
select count(1) faxian,sum(case state when '2' then 1 else 0 end )as zhenggai from t_staning_book where is_del=0
<if
test=
"type=='day'"
>
and DATE_SUB(now(), INTERVAL 1 DAY)
<
date(find_time)
</if>
<if
test=
"type=='month'"
>
and DATE_SUB(now(), INTERVAL 30 DAY)
<
date(find_time)
</if>
<if
test=
"type=='year'"
>
and DATE_SUB(now(), INTERVAL 365 DAY)
<
date(find_time)
</if>
</select>
</mapper>
\ No newline at end of file
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