Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
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
fangxinjiang
yifu-mvp
Commits
4612a98e
Commit
4612a98e
authored
Aug 11, 2025
by
fangxinjiang
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/MVP1.7.14' into MVP1.7.14
parents
8b3bcbb2
7b10b7d8
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
853 additions
and
14 deletions
+853
-14
TEmployeeInsurancePre.java
...plus/v1/yifu/insurances/entity/TEmployeeInsurancePre.java
+6
-0
TEmployeeInsurancePreQw.java
...us/v1/yifu/insurances/entity/TEmployeeInsurancePreQw.java
+89
-0
TEmployeeInsurancePreQwDetail.java
...yifu/insurances/entity/TEmployeeInsurancePreQwDetail.java
+99
-0
TEmployeeInsurancePreQwDetailController.java
...s/controller/TEmployeeInsurancePreQwDetailController.java
+60
-0
TEmployeeInsurancePreQwDetailMapper.java
...apper/insurances/TEmployeeInsurancePreQwDetailMapper.java
+43
-0
TEmployeeInsurancePreQwMapper.java
...nces/mapper/insurances/TEmployeeInsurancePreQwMapper.java
+33
-0
TEmployeeInsurancePreQwDetailService.java
...rvice/insurance/TEmployeeInsurancePreQwDetailService.java
+40
-0
TEmployeeInsurancePreQwService.java
...ces/service/insurance/TEmployeeInsurancePreQwService.java
+30
-0
TEmployeeInsurancePreQwDetailServiceImpl.java
...urance/impl/TEmployeeInsurancePreQwDetailServiceImpl.java
+47
-0
TEmployeeInsurancePreQwServiceImpl.java
...ce/insurance/impl/TEmployeeInsurancePreQwServiceImpl.java
+36
-0
TEmployeeInsurancePreServiceImpl.java
...vice/insurance/impl/TEmployeeInsurancePreServiceImpl.java
+235
-14
TEmployeeInsurancePreQwDetailMapper.xml
...mapper/insurances/TEmployeeInsurancePreQwDetailMapper.xml
+79
-0
TEmployeeInsurancePreQwMapper.xml
...urces/mapper/insurances/TEmployeeInsurancePreQwMapper.xml
+56
-0
No files found.
yifu-insurances/yifu-insurances-api/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/entity/TEmployeeInsurancePre.java
View file @
4612a98e
...
...
@@ -147,6 +147,12 @@ public class TEmployeeInsurancePre extends BaseEntity {
@Schema
(
description
=
"商险ID"
)
private
String
insurancesId
;
@Schema
(
description
=
"发起失败原因"
)
private
String
errorInfo
;
@Schema
(
description
=
"发起失败时间"
)
private
LocalDateTime
errorTime
;
@TableField
(
exist
=
false
)
@Schema
(
description
=
"修改类型:1新增;2修改;3删除;4状态346为不可编辑"
)
private
String
modelType
;
...
...
yifu-insurances/yifu-insurances-api/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/entity/TEmployeeInsurancePreQw.java
0 → 100644
View file @
4612a98e
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
insurances
.
entity
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.alibaba.excel.annotation.write.style.ColumnWidth
;
import
com.alibaba.excel.annotation.write.style.HeadFontStyle
;
import
com.baomidou.mybatisplus.annotation.*
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
org.hibernate.validator.constraints.Length
;
import
javax.validation.constraints.NotBlank
;
import
java.time.LocalDateTime
;
/**
* 商险定时失败的企微
*
* @author hgw
* @date 2025-08-07 17:49:14
*/
@Data
@TableName
(
"t_employee_insurance_pre_qw"
)
@Schema
(
description
=
"商险定时失败的企微"
)
public
class
TEmployeeInsurancePreQw
{
/**
* 主键
*/
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
@ExcelProperty
(
"主键"
)
@Schema
(
description
=
"主键"
)
private
String
id
;
/**
* 前端客服
*/
@ExcelAttribute
(
name
=
"前端客服"
,
maxLength
=
30
)
@Length
(
max
=
30
,
message
=
"前端客服不能超过30个字符"
)
@ExcelProperty
(
"前端客服"
)
@Schema
(
description
=
"前端客服"
)
private
String
customerUsername
;
/**
* 前端客服登录名
*/
@ExcelAttribute
(
name
=
"前端客服登录名"
,
isNotEmpty
=
true
,
errorInfo
=
"前端客服登录名不能为空"
,
maxLength
=
30
)
@NotBlank
(
message
=
"前端客服登录名不能为空"
)
@Length
(
max
=
30
,
message
=
"前端客服登录名不能超过30个字符"
)
@ExcelProperty
(
"前端客服登录名"
)
@Schema
(
description
=
"前端客服登录名"
)
private
String
customerUserLoginname
;
/**
* 内容
*/
@ExcelAttribute
(
name
=
"内容"
,
isNotEmpty
=
true
,
errorInfo
=
"内容不能为空"
,
maxLength
=
200
)
@NotBlank
(
message
=
"内容不能为空"
)
@Length
(
max
=
200
,
message
=
"内容不能超过200个字符"
)
@ExcelProperty
(
"内容"
)
@Schema
(
description
=
"内容"
)
private
String
description
;
/**
* 创建时间
*/
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
@Schema
(
description
=
"创建时间"
)
@TableField
(
fill
=
FieldFill
.
INSERT
)
@HeadFontStyle
(
fontHeightInPoints
=
11
)
@ExcelProperty
(
"创建时间"
)
@ColumnWidth
(
18
)
private
LocalDateTime
createTime
;
}
yifu-insurances/yifu-insurances-api/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/entity/TEmployeeInsurancePreQwDetail.java
0 → 100644
View file @
4612a98e
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
insurances
.
entity
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
org.hibernate.validator.constraints.Length
;
import
javax.validation.constraints.NotBlank
;
import
java.time.LocalDateTime
;
/**
* 商险定时失败的企微的详情
*
* @author hgw
* @date 2025-08-07 17:49:14
*/
@Data
@TableName
(
"t_employee_insurance_pre_qw_detail"
)
@Schema
(
description
=
"商险定时失败的企微的详情"
)
public
class
TEmployeeInsurancePreQwDetail
{
/**
* 主键
*/
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
@ExcelProperty
(
"主键"
)
@Schema
(
description
=
"主键"
)
private
String
id
;
/**
* 关联主键(t_employee_insurance_pre_qw表的ID)
*/
@ExcelAttribute
(
name
=
"关联主键(t_employee_insurance_pre_qw表的ID)"
,
isNotEmpty
=
true
,
errorInfo
=
"关联主键(t_employee_insurance_pre_qw表的ID)不能为空"
,
maxLength
=
36
)
@NotBlank
(
message
=
"关联主键(t_employee_insurance_pre_qw表的ID)不能为空"
)
@Length
(
max
=
36
,
message
=
"关联主键(t_employee_insurance_pre_qw表的ID)不能超过36个字符"
)
@ExcelProperty
(
"关联主键(t_employee_insurance_pre_qw表的ID)"
)
@Schema
(
description
=
"关联主键(t_employee_insurance_pre_qw表的ID)"
)
private
String
mainId
;
/**
* 姓名
*/
@ExcelAttribute
(
name
=
"姓名"
,
maxLength
=
30
)
@Length
(
max
=
30
,
message
=
"姓名不能超过30个字符"
)
@ExcelProperty
(
"姓名"
)
@Schema
(
description
=
"姓名"
)
private
String
empName
;
/**
* 身份证
*/
@ExcelAttribute
(
name
=
"身份证"
,
maxLength
=
18
)
@Length
(
max
=
18
,
message
=
"身份证不能超过18个字符"
)
@ExcelProperty
(
"身份证"
)
@Schema
(
description
=
"身份证"
)
private
String
empIdcard
;
/**
* 失败原因
*/
@ExcelAttribute
(
name
=
"失败原因"
,
maxLength
=
200
)
@Length
(
max
=
200
,
message
=
"失败原因不能超过200个字符"
)
@ExcelProperty
(
"失败原因"
)
@Schema
(
description
=
"失败原因"
)
private
String
errorInfo
;
/**
* 失败时间
*/
@ExcelAttribute
(
name
=
"失败时间"
,
isDate
=
true
)
@ExcelProperty
(
"失败时间"
)
@Schema
(
description
=
"失败时间"
)
private
LocalDateTime
errorTime
;
/**
* 商险待派单ID(t_employee_insurance_pre的ID)
*/
@ExcelAttribute
(
name
=
"商险待派单ID(t_employee_insurance_pre的ID)"
,
maxLength
=
36
)
@Length
(
max
=
36
,
message
=
"商险待派单ID(t_employee_insurance_pre的ID)不能超过36个字符"
)
@ExcelProperty
(
"商险待派单ID(t_employee_insurance_pre的ID)"
)
@Schema
(
description
=
"商险待派单ID(t_employee_insurance_pre的ID)"
)
private
String
preId
;
}
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/controller/TEmployeeInsurancePreQwDetailController.java
0 → 100644
View file @
4612a98e
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
insurances
.
controller
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.insurances.entity.TEmployeeInsurancePreQwDetail
;
import
com.yifu.cloud.plus.v1.yifu.insurances.service.insurance.TEmployeeInsurancePreQwDetailService
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
lombok.RequiredArgsConstructor
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
/**
* 商险定时失败的企微
*
* @author hgw
* @date 2025-08-07 17:49:14
*/
@RestController
@RequiredArgsConstructor
@RequestMapping
(
"/temployeeinsurancepreqwdetail"
)
@Tag
(
name
=
"商险定时失败的企微管理"
)
public
class
TEmployeeInsurancePreQwDetailController
{
private
final
TEmployeeInsurancePreQwDetailService
tEmployeeInsurancePreQwDetailService
;
/**
* 简单分页查询
*
* @param page 分页对象
* @param tEmployeeInsurancePreQwDetail 商险定时失败的企微
* @return
*/
@Operation
(
description
=
"简单分页查询"
)
@GetMapping
(
"/page"
)
public
R
<
IPage
<
TEmployeeInsurancePreQwDetail
>>
getTEmployeeInsurancePreQwDetailPage
(
Page
<
TEmployeeInsurancePreQwDetail
>
page
,
TEmployeeInsurancePreQwDetail
tEmployeeInsurancePreQwDetail
)
{
return
new
R
<>(
tEmployeeInsurancePreQwDetailService
.
getTEmployeeInsurancePreQwDetailPage
(
page
,
tEmployeeInsurancePreQwDetail
));
}
}
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/mapper/insurances/TEmployeeInsurancePreQwDetailMapper.java
0 → 100644
View file @
4612a98e
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
insurances
.
mapper
.
insurances
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.yifu.insurances.entity.TEmployeeInsurancePreQwDetail
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
/**
* 商险定时失败的企微
*
* @author hgw
* @date 2025-08-07 17:49:14
*/
@Mapper
public
interface
TEmployeeInsurancePreQwDetailMapper
extends
BaseMapper
<
TEmployeeInsurancePreQwDetail
>
{
/**
* 商险定时失败的企微简单分页查询
*
* @param tEmployeeInsurancePreQwDetail 商险定时失败的企微
* @return
*/
IPage
<
TEmployeeInsurancePreQwDetail
>
getTEmployeeInsurancePreQwDetailPage
(
Page
<
TEmployeeInsurancePreQwDetail
>
page
,
@Param
(
"tEmployeeInsurancePreQwDetail"
)
TEmployeeInsurancePreQwDetail
tEmployeeInsurancePreQwDetail
);
}
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/mapper/insurances/TEmployeeInsurancePreQwMapper.java
0 → 100644
View file @
4612a98e
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
insurances
.
mapper
.
insurances
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.yifu.cloud.plus.v1.yifu.insurances.entity.TEmployeeInsurancePreQw
;
import
org.apache.ibatis.annotations.Mapper
;
/**
* 商险定时失败的企微
*
* @author hgw
* @date 2025-08-07 17:49:14
*/
@Mapper
public
interface
TEmployeeInsurancePreQwMapper
extends
BaseMapper
<
TEmployeeInsurancePreQw
>
{
}
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/insurance/TEmployeeInsurancePreQwDetailService.java
0 → 100644
View file @
4612a98e
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
insurances
.
service
.
insurance
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.yifu.cloud.plus.v1.yifu.insurances.entity.TEmployeeInsurancePreQwDetail
;
/**
* 商险定时失败的企微
*
* @author hgw
* @date 2025-08-07 17:49:14
*/
public
interface
TEmployeeInsurancePreQwDetailService
extends
IService
<
TEmployeeInsurancePreQwDetail
>
{
/**
* 商险定时失败的企微简单分页查询
*
* @param tEmployeeInsurancePreQwDetail 商险定时失败的企微
* @return
*/
IPage
<
TEmployeeInsurancePreQwDetail
>
getTEmployeeInsurancePreQwDetailPage
(
Page
<
TEmployeeInsurancePreQwDetail
>
page
,
TEmployeeInsurancePreQwDetail
tEmployeeInsurancePreQwDetail
);
}
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/insurance/TEmployeeInsurancePreQwService.java
0 → 100644
View file @
4612a98e
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
insurances
.
service
.
insurance
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.yifu.cloud.plus.v1.yifu.insurances.entity.TEmployeeInsurancePreQw
;
/**
* 商险定时失败的企微
*
* @author hgw
* @date 2025-08-07 17:49:14
*/
public
interface
TEmployeeInsurancePreQwService
extends
IService
<
TEmployeeInsurancePreQw
>
{
}
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/insurance/impl/TEmployeeInsurancePreQwDetailServiceImpl.java
0 → 100644
View file @
4612a98e
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
insurances
.
service
.
insurance
.
impl
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.yifu.cloud.plus.v1.yifu.insurances.entity.TEmployeeInsurancePreQwDetail
;
import
com.yifu.cloud.plus.v1.yifu.insurances.mapper.insurances.TEmployeeInsurancePreQwDetailMapper
;
import
com.yifu.cloud.plus.v1.yifu.insurances.service.insurance.TEmployeeInsurancePreQwDetailService
;
import
lombok.extern.log4j.Log4j2
;
import
org.springframework.stereotype.Service
;
/**
* 商险定时失败的企微
*
* @author hgw
* @date 2025-08-07 17:49:14
*/
@Log4j2
@Service
public
class
TEmployeeInsurancePreQwDetailServiceImpl
extends
ServiceImpl
<
TEmployeeInsurancePreQwDetailMapper
,
TEmployeeInsurancePreQwDetail
>
implements
TEmployeeInsurancePreQwDetailService
{
/**
* 商险定时失败的企微简单分页查询
*
* @param tEmployeeInsurancePreQwDetail 商险定时失败的企微
* @return
*/
@Override
public
IPage
<
TEmployeeInsurancePreQwDetail
>
getTEmployeeInsurancePreQwDetailPage
(
Page
<
TEmployeeInsurancePreQwDetail
>
page
,
TEmployeeInsurancePreQwDetail
tEmployeeInsurancePreQwDetail
)
{
return
baseMapper
.
getTEmployeeInsurancePreQwDetailPage
(
page
,
tEmployeeInsurancePreQwDetail
);
}
}
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/insurance/impl/TEmployeeInsurancePreQwServiceImpl.java
0 → 100644
View file @
4612a98e
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
insurances
.
service
.
insurance
.
impl
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.yifu.cloud.plus.v1.yifu.insurances.entity.TEmployeeInsurancePreQw
;
import
com.yifu.cloud.plus.v1.yifu.insurances.mapper.insurances.TEmployeeInsurancePreQwMapper
;
import
com.yifu.cloud.plus.v1.yifu.insurances.service.insurance.TEmployeeInsurancePreQwService
;
import
lombok.extern.log4j.Log4j2
;
import
org.springframework.stereotype.Service
;
/**
* 商险定时失败的企微
*
* @author hgw
* @date 2025-08-07 17:49:14
*/
@Log4j2
@Service
public
class
TEmployeeInsurancePreQwServiceImpl
extends
ServiceImpl
<
TEmployeeInsurancePreQwMapper
,
TEmployeeInsurancePreQw
>
implements
TEmployeeInsurancePreQwService
{
}
yifu-insurances/yifu-insurances-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/service/insurance/impl/TEmployeeInsurancePreServiceImpl.java
View file @
4612a98e
This diff is collapsed.
Click to expand it.
yifu-insurances/yifu-insurances-biz/src/main/resources/mapper/insurances/TEmployeeInsurancePreQwDetailMapper.xml
0 → 100644
View file @
4612a98e
<?xml version="1.0" encoding="UTF-8"?>
<!--
~
~ Copyright (c) 2018-2025, lengleng All rights reserved.
~
~ Redistribution and use in source and binary forms, with or without
~ modification, are permitted provided that the following conditions are met:
~
~ Redistributions of source code must retain the above copyright notice,
~ this list of conditions and the following disclaimer.
~ Redistributions in binary form must reproduce the above copyright
~ notice, this list of conditions and the following disclaimer in the
~ documentation and/or other materials provided with the distribution.
~ Neither the name of the yifu4cloud.com developer nor the names of its
~ contributors may be used to endorse or promote products derived from
~ this software without specific prior written permission.
~ Author: lengleng (wangiegie@gmail.com)
~
-->
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.yifu.cloud.plus.v1.yifu.insurances.mapper.insurances.TEmployeeInsurancePreQwDetailMapper"
>
<resultMap
id=
"tEmployeeInsurancePreQwDetailMap"
type=
"com.yifu.cloud.plus.v1.yifu.insurances.entity.TEmployeeInsurancePreQwDetail"
>
<id
property=
"id"
column=
"ID"
/>
<result
property=
"mainId"
column=
"MAIN_ID"
/>
<result
property=
"empName"
column=
"EMP_NAME"
/>
<result
property=
"empIdcard"
column=
"EMP_IDCARD"
/>
<result
property=
"errorInfo"
column=
"ERROR_INFO"
/>
<result
property=
"errorTime"
column=
"ERROR_TIME"
/>
<result
property=
"preId"
column=
"PRE_ID"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
a.ID,
a.MAIN_ID,
a.EMP_NAME,
a.EMP_IDCARD,
a.ERROR_INFO,
a.ERROR_TIME,
a.PRE_ID
</sql>
<sql
id=
"tEmployeeInsurancePreQwDetail_where"
>
<if
test=
"tEmployeeInsurancePreQwDetail != null"
>
<if
test=
"tEmployeeInsurancePreQwDetail.id != null and tEmployeeInsurancePreQwDetail.id.trim() != ''"
>
AND a.ID = #{tEmployeeInsurancePreQwDetail.id}
</if>
<if
test=
"tEmployeeInsurancePreQwDetail.mainId != null and tEmployeeInsurancePreQwDetail.mainId.trim() != ''"
>
AND a.MAIN_ID = #{tEmployeeInsurancePreQwDetail.mainId}
</if>
<if
test=
"tEmployeeInsurancePreQwDetail.empName != null and tEmployeeInsurancePreQwDetail.empName.trim() != ''"
>
AND a.EMP_NAME = #{tEmployeeInsurancePreQwDetail.empName}
</if>
<if
test=
"tEmployeeInsurancePreQwDetail.empIdcard != null and tEmployeeInsurancePreQwDetail.empIdcard.trim() != ''"
>
AND a.EMP_IDCARD = #{tEmployeeInsurancePreQwDetail.empIdcard}
</if>
<if
test=
"tEmployeeInsurancePreQwDetail.errorInfo != null and tEmployeeInsurancePreQwDetail.errorInfo.trim() != ''"
>
AND a.ERROR_INFO = #{tEmployeeInsurancePreQwDetail.errorInfo}
</if>
<if
test=
"tEmployeeInsurancePreQwDetail.errorTime != null"
>
AND a.ERROR_TIME = #{tEmployeeInsurancePreQwDetail.errorTime}
</if>
<if
test=
"tEmployeeInsurancePreQwDetail.preId != null and tEmployeeInsurancePreQwDetail.preId.trim() != ''"
>
AND a.PRE_ID = #{tEmployeeInsurancePreQwDetail.preId}
</if>
</if>
</sql>
<!--tEmployeeInsurancePreQwDetail简单分页查询-->
<select
id=
"getTEmployeeInsurancePreQwDetailPage"
resultMap=
"tEmployeeInsurancePreQwDetailMap"
>
SELECT
<include
refid=
"Base_Column_List"
/>
FROM t_employee_insurance_pre_qw_detail a
<where>
1=1
<include
refid=
"tEmployeeInsurancePreQwDetail_where"
/>
</where>
</select>
</mapper>
yifu-insurances/yifu-insurances-biz/src/main/resources/mapper/insurances/TEmployeeInsurancePreQwMapper.xml
0 → 100644
View file @
4612a98e
<?xml version="1.0" encoding="UTF-8"?>
<!--
~
~ Copyright (c) 2018-2025, lengleng All rights reserved.
~
~ Redistribution and use in source and binary forms, with or without
~ modification, are permitted provided that the following conditions are met:
~
~ Redistributions of source code must retain the above copyright notice,
~ this list of conditions and the following disclaimer.
~ Redistributions in binary form must reproduce the above copyright
~ notice, this list of conditions and the following disclaimer in the
~ documentation and/or other materials provided with the distribution.
~ Neither the name of the yifu4cloud.com developer nor the names of its
~ contributors may be used to endorse or promote products derived from
~ this software without specific prior written permission.
~ Author: lengleng (wangiegie@gmail.com)
~
-->
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.yifu.cloud.plus.v1.yifu.insurances.mapper.insurances.TEmployeeInsurancePreQwMapper"
>
<resultMap
id=
"tEmployeeInsurancePreQwMap"
type=
"com.yifu.cloud.plus.v1.yifu.insurances.entity.TEmployeeInsurancePreQw"
>
<id
property=
"id"
column=
"ID"
/>
<result
property=
"customerUsername"
column=
"customer_username"
/>
<result
property=
"customerUserLoginname"
column=
"customer_user_loginname"
/>
<result
property=
"description"
column=
"description"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
a.id,
a.customer_username,
a.customer_user_loginname,
a.description
</sql>
<sql
id=
"tEmployeeInsurancePreQw_where"
>
<if
test=
"tEmployeeInsurancePreQw != null"
>
<if
test=
"tEmployeeInsurancePreQw.id != null and tEmployeeInsurancePreQw.id.trim() != ''"
>
AND a.ID = #{tEmployeeInsurancePreQw.id}
</if>
<if
test=
"tEmployeeInsurancePreQw.customerUsername != null and tEmployeeInsurancePreQw.customerUsername.trim() != ''"
>
AND a.customer_username = #{tEmployeeInsurancePreQw.customerUsername}
</if>
<if
test=
"tEmployeeInsurancePreQw.customerUserLoginname != null and tEmployeeInsurancePreQw.customerUserLoginname.trim() != ''"
>
AND a.customer_user_loginname = #{tEmployeeInsurancePreQw.customerUserLoginname}
</if>
<if
test=
"tEmployeeInsurancePreQw.description != null and tEmployeeInsurancePreQw.description.trim() != ''"
>
AND a.description = #{tEmployeeInsurancePreQw.description}
</if>
</if>
</sql>
</mapper>
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