Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
8
8timerapiv200
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
8timerv2
8timerapiv200
Commits
0c536722
Commit
0c536722
authored
Oct 15, 2022
by
翁国栋
Committed by
284718418@qq.com
Mar 30, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
8小时操作人员
parent
a6fc77c2
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
9 deletions
+7
-9
src/main/java/cn/timer/api/controller/insure/InsureUserController.java
+1
-7
src/main/java/cn/timer/api/dto/insure/InsureDto.java
+3
-0
src/main/resources/mapping/insure/InsureLogMapper.xml
+3
-2
No files found.
src/main/java/cn/timer/api/controller/insure/InsureUserController.java
View file @
0c536722
...
@@ -128,16 +128,10 @@ public class InsureUserController{
...
@@ -128,16 +128,10 @@ public class InsureUserController{
policyDto
.
setPolicyDateStart
(
policyDateStart
);
policyDto
.
setPolicyDateStart
(
policyDateStart
);
policyDto
.
setPlanId
(
planId
);
policyDto
.
setPlanId
(
planId
);
policyDto
.
setCategoryId
(
categoryId
);
policyDto
.
setCategoryId
(
categoryId
);
Page
page
=
new
Page
();
policyDto
.
setPage
(
null
);
page
.
setOffset
(
null
);
page
.
setTotalPage
(
null
);
policyDto
.
setPage
(
page
);
List
<
PolicyDto
>
userList
=
insureUserMapper
.
selectPolicyList
(
policyDto
);
List
<
PolicyDto
>
userList
=
insureUserMapper
.
selectPolicyList
(
policyDto
);
String
[]
rowName
=
new
String
[]{
"编号"
,
"姓名"
,
"证件类型"
,
"证件号"
,
"保单号"
,
"状态"
,
"计划"
,
"保险生效时间"
,
"保险失效时间"
};
String
[]
rowName
=
new
String
[]{
"编号"
,
"姓名"
,
"证件类型"
,
"证件号"
,
"保单号"
,
"状态"
,
"计划"
,
"保险生效时间"
,
"保险失效时间"
};
List
<
Object
[]>
list
=
null
;
List
<
Object
[]>
list
=
null
;
// for ()
// XSSFWorkbook xssfWorkbook = ExcelUtils.exportExcel("导出人员清单.xlsx", rowName, list);
OutputStream
os
=
null
;
OutputStream
os
=
null
;
try
{
try
{
resp
.
setContentType
(
"application/octet-stream"
);
resp
.
setContentType
(
"application/octet-stream"
);
...
...
src/main/java/cn/timer/api/dto/insure/InsureDto.java
View file @
0c536722
...
@@ -41,5 +41,8 @@ public class InsureDto {
...
@@ -41,5 +41,8 @@ public class InsureDto {
private
String
idCardNo
;
private
String
idCardNo
;
private
String
reason
;
/*批改原因*/
private
String
reason
;
/*批改原因*/
private
Integer
payType
=
1
;
/*支付方式 默认是在线支付*/
private
Integer
payType
=
1
;
/*支付方式 默认是在线支付*/
private
String
operatorName
=
"admin"
;
//投保人名字
private
String
operatorCompanyName
=
"运营后台"
;
private
Integer
method
=
2
;
//提交1方式 1是八小时后台 2是后台
// private String
// private String
}
}
src/main/resources/mapping/insure/InsureLogMapper.xml
View file @
0c536722
...
@@ -214,14 +214,15 @@
...
@@ -214,14 +214,15 @@
ip.policy_no,
ip.policy_no,
log.user_name,
log.user_name,
log.policy_id,
log.policy_id,
q.`name` as companyName,
log.create_time,
log.create_time,
log.return_code,
log.return_code,
log.file_url,
log.file_url,
log.user_type,
log.user_name,
log.company_name,
log.type
log.type
from insure_log log
from insure_log log
LEFT JOIN insure_policy ip on ip.id = log.policy_id
LEFT JOIN insure_policy ip on ip.id = log.policy_id
LEFT JOIN qyzx_ent_info_m q on q.id = ip.org_code
WHERE log.type in (1,2,3,7,8)
WHERE log.type in (1,2,3,7,8)
<if
test=
"param.policyNo!=null and param.policyNo != ''"
>
<if
test=
"param.policyNo!=null and param.policyNo != ''"
>
and ip.policy_no = #{param.policyNo}
and ip.policy_no = #{param.policyNo}
...
...
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