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
42ca174b
Commit
42ca174b
authored
Oct 25, 2022
by
zhangjianqian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
app批量新增
parent
fd8af6c4
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
2 deletions
+44
-2
TSpecialWorkPermitSignController.java
...ntroller/workPermit/TSpecialWorkPermitSignController.java
+42
-0
application-dev.yml
danger-manage-admin/src/main/resources/application-dev.yml
+1
-1
application.yml
danger-manage-admin/src/main/resources/application.yml
+1
-1
No files found.
danger-manage-admin/src/main/java/com/zehong/web/controller/workPermit/TSpecialWorkPermitSignController.java
View file @
42ca174b
package
com
.
zehong
.
web
.
controller
.
workPermit
;
import
java.io.BufferedReader
;
import
java.io.InputStream
;
import
java.io.InputStreamReader
;
import
java.util.List
;
import
java.util.Map
;
import
com.alibaba.fastjson.JSON
;
import
com.alibaba.fastjson.JSONObject
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.GetMapping
;
...
...
@@ -20,6 +27,10 @@ import com.zehong.system.service.ITSpecialWorkPermitSignService;
import
com.zehong.common.utils.poi.ExcelUtil
;
import
com.zehong.common.core.page.TableDataInfo
;
import
javax.servlet.ServletException
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletResponse
;
/**
* 【请填写功能名称】Controller
*
...
...
@@ -68,6 +79,37 @@ public class TSpecialWorkPermitSignController extends BaseController
return
AjaxResult
.
success
(
tSpecialWorkPermitSignService
.
selectTSpecialWorkPermitSignById
(
signId
));
}
/**
* app添加
*/
//@PreAuthorize("@ss.hasPermi('system:sign:add')")
@Log
(
title
=
"批量添加"
,
businessType
=
BusinessType
.
INSERT
)
@PostMapping
(
value
=
"/insertAll"
)
public
AjaxResult
addAll
(
HttpServletRequest
req
,
HttpServletResponse
resp
)
throws
Exception
{
StringBuffer
sb
=
new
StringBuffer
()
;
InputStream
is
=
req
.
getInputStream
();
BufferedReader
br
=
new
BufferedReader
(
new
InputStreamReader
(
is
,
"utf-8"
));
String
s
=
""
;
while
((
s
=
br
.
readLine
())!=
null
){
sb
.
append
(
s
)
;
}
if
(
sb
.
toString
().
length
()<=
0
){
return
toAjax
(
0
);
}
Map
<
String
,
Object
>
map
=
(
Map
<
String
,
Object
>)
JSON
.
parseObject
(
sb
.
toString
());
int
a
=
0
;
List
<
Map
<
String
,
Object
>>
list
=(
List
<
Map
<
String
,
Object
>>)
JSON
.
parse
((
String
)
map
.
get
(
"signList"
));
for
(
Map
<
String
,
Object
>
m
:
list
){
TSpecialWorkPermitSign
t
=
new
TSpecialWorkPermitSign
();
t
.
setPermitId
(((
Integer
)
m
.
get
(
"permitId"
)).
longValue
());
t
.
setStaffId
(((
Integer
)
m
.
get
(
"staffId"
)).
longValue
());
t
.
setStaffType
((
String
)
m
.
get
(
"staffType"
));
a
=
tSpecialWorkPermitSignService
.
insertTSpecialWorkPermitSign
(
t
);
}
return
toAjax
(
1
);
}
/**
* 新增【请填写功能名称】
*/
...
...
danger-manage-admin/src/main/resources/application-dev.yml
View file @
42ca174b
...
...
@@ -105,7 +105,7 @@ zehong:
# 实例演示开关
demoEnabled
:
true
# 文件路径 示例( Windows配置D:/zehong/uploadPath,Linux配置 /home/zehong/uploadPath)
profile
:
/home
/zehong/uploadPath
profile
:
D:
/zehong/uploadPath
# 获取ip地址开关
addressEnabled
:
false
# 验证码类型 math 数组计算 char 字符验证
...
...
danger-manage-admin/src/main/resources/application.yml
View file @
42ca174b
...
...
@@ -55,7 +55,7 @@ swagger:
# 是否开启swagger
enabled
:
true
# 请求前缀
pathMapping
:
/dev-api
pathMapping
:
# 防止XSS攻击
xss
:
...
...
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