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
ec118016
Commit
ec118016
authored
May 27, 2022
by
翁国栋
Committed by
284718418@qq.com
Mar 30, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
8小时后台--
保单增员支付
parent
9d5ca1ab
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
23 additions
and
7 deletions
+23
-7
src/main/java/cn/timer/api/bean/insure/InsurePay.java
+2
-0
src/main/java/cn/timer/api/controller/insure/CallBackContorll.java
+0
-0
src/main/java/cn/timer/api/controller/qyzx/QyzxController.java
+3
-3
src/main/java/cn/timer/api/dao/qyzx/QyzxEntInfoMMapper.java
+2
-2
src/main/java/cn/timer/api/dto/qyzx/EntInfoDto.java
+2
-0
src/main/resources/mapping/insure/InsurePayMapper.xml
+1
-0
src/main/resources/mapping/qyzx/QyzxEntInfoMMapper.xml
+13
-2
No files found.
src/main/java/cn/timer/api/bean/insure/InsurePay.java
View file @
ec118016
...
@@ -73,6 +73,8 @@ public class InsurePay extends Model<InsurePay> {
...
@@ -73,6 +73,8 @@ public class InsurePay extends Model<InsurePay> {
private
String
serialNumber
;
private
String
serialNumber
;
private
String
payUrl
;
/**
/**
* 设置:id
* 设置:id
*/
*/
...
...
src/main/java/cn/timer/api/controller/insure/CallBackContorll.java
View file @
ec118016
This diff is collapsed.
Click to expand it.
src/main/java/cn/timer/api/controller/qyzx/QyzxController.java
View file @
ec118016
...
@@ -657,10 +657,10 @@ public class QyzxController {
...
@@ -657,10 +657,10 @@ public class QyzxController {
*/
*/
@PostMapping
(
value
=
"/companyAdminList"
)
@PostMapping
(
value
=
"/companyAdminList"
)
@ApiOperation
(
value
=
"运营后台---企业信息列表"
,
httpMethod
=
"POST"
,
notes
=
""
)
@ApiOperation
(
value
=
"运营后台---企业信息列表"
,
httpMethod
=
"POST"
,
notes
=
""
)
public
Result
<
Object
>
companyAdminList
(
@RequestBody
cn
.
timer
.
api
.
utils
.
Page
page
)
{
public
Result
<
Object
>
companyAdminList
(
@RequestBody
EntInfoDto
entInfoDto
)
{
Map
map
=
Maps
.
newHashMap
();
Map
map
=
Maps
.
newHashMap
();
List
<
EntInfoDto
>
list
=
Optional
.
ofNullable
(
qyzxEntInfoMMapper
.
companyAdminList
(
page
)).
orElse
(
Lists
.
newArrayList
());
List
<
EntInfoDto
>
list
=
Optional
.
ofNullable
(
qyzxEntInfoMMapper
.
companyAdminList
(
entInfoDto
)).
orElse
(
Lists
.
newArrayList
());
Integer
count
=
qyzxEntInfoMMapper
.
companyAdminCount
();
Integer
count
=
qyzxEntInfoMMapper
.
companyAdminCount
(
entInfoDto
);
map
.
put
(
"list"
,
list
);
map
.
put
(
"list"
,
list
);
map
.
put
(
"count"
,
count
);
map
.
put
(
"count"
,
count
);
return
ResultUtil
.
data
(
map
);
return
ResultUtil
.
data
(
map
);
...
...
src/main/java/cn/timer/api/dao/qyzx/QyzxEntInfoMMapper.java
View file @
ec118016
...
@@ -18,9 +18,9 @@ import java.util.Map;
...
@@ -18,9 +18,9 @@ import java.util.Map;
*/
*/
@Repository
@Repository
public
interface
QyzxEntInfoMMapper
extends
BaseMapper
<
QyzxEntInfoM
>
{
public
interface
QyzxEntInfoMMapper
extends
BaseMapper
<
QyzxEntInfoM
>
{
public
List
<
EntInfoDto
>
companyAdminList
(
@Param
(
"pa
ge"
)
Page
page
);
public
List
<
EntInfoDto
>
companyAdminList
(
@Param
(
"pa
ram"
)
EntInfoDto
entInfoDto
);
public
Integer
companyAdminCount
();
public
Integer
companyAdminCount
(
@Param
(
"param"
)
EntInfoDto
entInfoDto
);
public
List
<
Map
<
String
,
String
>>
getCompanyList
();
public
List
<
Map
<
String
,
String
>>
getCompanyList
();
...
...
src/main/java/cn/timer/api/dto/qyzx/EntInfoDto.java
View file @
ec118016
package
cn
.
timer
.
api
.
dto
.
qyzx
;
package
cn
.
timer
.
api
.
dto
.
qyzx
;
import
cn.timer.api.utils.Page
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
...
@@ -26,4 +27,5 @@ public class EntInfoDto {
...
@@ -26,4 +27,5 @@ public class EntInfoDto {
private
String
endTime
;
private
String
endTime
;
private
Integer
totlaSpmk
;
private
Integer
totlaSpmk
;
private
Integer
totlaCc
;
private
Integer
totlaCc
;
private
Page
page
;
}
}
src/main/resources/mapping/insure/InsurePayMapper.xml
View file @
ec118016
...
@@ -14,6 +14,7 @@
...
@@ -14,6 +14,7 @@
<result
property=
"payType"
column=
"pay_type"
/>
<result
property=
"payType"
column=
"pay_type"
/>
<result
property=
"policyId"
column=
"policy_id"
/>
<result
property=
"policyId"
column=
"policy_id"
/>
<result
property=
"serialNumber"
column=
"serial_number"
/>
<result
property=
"serialNumber"
column=
"serial_number"
/>
<result
property=
"payUrl"
column=
"pay_url"
/>
</resultMap>
</resultMap>
...
...
src/main/resources/mapping/qyzx/QyzxEntInfoMMapper.xml
View file @
ec118016
...
@@ -217,10 +217,21 @@
...
@@ -217,10 +217,21 @@
LEFT JOIN yggl_main_emp yme ON yme.org_code = qeim.id
LEFT JOIN yggl_main_emp yme ON yme.org_code = qeim.id
LEFT JOIN ( SELECT sas.org_code AS oid, count( sas.id ) AS totlaSpmk FROM spmk_approve_summary sas GROUP BY sas.org_code ) AS a ON a.oid = qeim.id
LEFT JOIN ( SELECT sas.org_code AS oid, count( sas.id ) AS totlaSpmk FROM spmk_approve_summary sas GROUP BY sas.org_code ) AS a ON a.oid = qeim.id
LEFT JOIN ( SELECT cc.organization_id AS oid, count( cc.id ) AS totlaCc FROM cms_content cc GROUP BY cc.organization_id ) AS b ON b.oid = qeim.id
LEFT JOIN ( SELECT cc.organization_id AS oid, count( cc.id ) AS totlaCc FROM cms_content cc GROUP BY cc.organization_id ) AS b ON b.oid = qeim.id
<where>
<if
test=
"param.name != null and param.name !=''"
>
and qeim.NAME like CONCAT('%',#{name},'%')
</if>
<if
test=
"param.linkMan != null and param.linkMan !=''"
>
and qeim.link_man like CONCAT('%',#{linkMan},'%')
</if>
<if
test=
"param.linkManPhone != null and param.linkManPhone !=''"
>
and qeim.phone like CONCAT('%',#{linkManPhone},'%')
</if>
</where>
GROUP BY
GROUP BY
qeim.id
qeim.id
<if
test=
"pa
ge.offset != null and
page.totalPage !=null"
>
<if
test=
"pa
ram.page.offset != null and param.
page.totalPage !=null"
>
limit #{pa
ge.offset},#{
page.totalPage}
limit #{pa
ram.page.offset},#{param.
page.totalPage}
</if>
</if>
</select>
</select>
...
...
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