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
4f683551
Commit
4f683551
authored
Apr 01, 2025
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
商险规则配置-fxj
parent
fc42e240
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
1985 additions
and
5 deletions
+1985
-5
TAutoInsurRuleInfo.java
...loud/plus/v1/yifu/archives/entity/TAutoInsurRuleInfo.java
+185
-0
TAutoInsurStandard.java
...loud/plus/v1/yifu/archives/entity/TAutoInsurStandard.java
+118
-0
TAutoInsurRuleInfoSearchVo.java
.../plus/v1/yifu/archives/vo/TAutoInsurRuleInfoSearchVo.java
+58
-0
TAutoInsurRuleInfoVo.java
.../cloud/plus/v1/yifu/archives/vo/TAutoInsurRuleInfoVo.java
+168
-0
TAutoInsurStandardSearchVo.java
.../plus/v1/yifu/archives/vo/TAutoInsurStandardSearchVo.java
+58
-0
TAutoInsurStandardVo.java
.../cloud/plus/v1/yifu/archives/vo/TAutoInsurStandardVo.java
+116
-0
TAutoMainRelAddVo.java
...ifu/cloud/plus/v1/yifu/archives/vo/TAutoMainRelAddVo.java
+5
-4
TAutoInsurRuleInfoController.java
...ifu/archives/controller/TAutoInsurRuleInfoController.java
+155
-0
TAutoInsurStandardController.java
...ifu/archives/controller/TAutoInsurStandardController.java
+153
-0
TAutoInsurRuleInfoMapper.java
...lus/v1/yifu/archives/mapper/TAutoInsurRuleInfoMapper.java
+41
-0
TAutoInsurStandardMapper.java
...lus/v1/yifu/archives/mapper/TAutoInsurStandardMapper.java
+41
-0
TAutoInsurRuleInfoService.java
...s/v1/yifu/archives/service/TAutoInsurRuleInfoService.java
+51
-0
TAutoInsurStandardService.java
...s/v1/yifu/archives/service/TAutoInsurStandardService.java
+50
-0
TAutoInsurRuleInfoServiceImpl.java
.../archives/service/impl/TAutoInsurRuleInfoServiceImpl.java
+247
-0
TAutoInsurStandardServiceImpl.java
.../archives/service/impl/TAutoInsurStandardServiceImpl.java
+247
-0
TAutoMainRelServiceImpl.java
...1/yifu/archives/service/impl/TAutoMainRelServiceImpl.java
+19
-1
TAutoInsurRuleInfoMapper.xml
...iz/src/main/resources/mapper/TAutoInsurRuleInfoMapper.xml
+159
-0
TAutoInsurStandardMapper.xml
...iz/src/main/resources/mapper/TAutoInsurStandardMapper.xml
+114
-0
No files found.
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/entity/TAutoInsurRuleInfo.java
0 → 100644
View file @
4f683551
/*
* 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
.
archives
.
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
com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.hibernate.validator.constraints.Length
;
import
javax.validation.constraints.NotBlank
;
/**
* 商险购买规则配置表
*
* @author fxj
* @date 2025-04-01 10:14:09
*/
@Data
@TableName
(
"t_auto_insur_rule_info"
)
@EqualsAndHashCode
(
callSuper
=
true
)
@Schema
(
description
=
"商险购买规则配置表"
)
public
class
TAutoInsurRuleInfo
extends
BaseEntity
{
/**
* 主键
*/
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
@ExcelProperty
(
"主键"
)
@Schema
(
description
=
"主键"
)
private
String
id
;
/**
* 是否启用自动化:0是 1否
*/
@ExcelAttribute
(
name
=
"是否启用自动化"
,
isNotEmpty
=
true
,
errorInfo
=
"是否启用自动化不能为空"
)
@NotBlank
(
message
=
"是否启用自动化:0是 1否不能为空"
)
@ExcelProperty
(
"是否启用自动化"
)
@Schema
(
description
=
"是否启用自动化:0是 1否"
)
private
Integer
autoFlag
;
/**
* 投保方式:0自动1 手动
*/
@ExcelAttribute
(
name
=
"投保方式"
,
isNotEmpty
=
true
,
errorInfo
=
"投保方式不能为空"
)
@NotBlank
(
message
=
"投保方式:0自动1 手动不能为空"
)
@ExcelProperty
(
"投保方式"
)
@Schema
(
description
=
"投保方式:0自动1 手动"
)
private
Integer
addType
;
/**
* 续保方式:0自动1 手动
*/
@ExcelAttribute
(
name
=
"续保方式"
,
isNotEmpty
=
true
,
errorInfo
=
"续保方式不能为空"
)
@NotBlank
(
message
=
"续保方式:0自动1 手动不能为空"
)
@ExcelProperty
(
"续保方式"
)
@Schema
(
description
=
"续保方式:0自动1 手动"
)
private
Integer
updateType
;
/**
* 退保方式:0自动1 手动
*/
@ExcelAttribute
(
name
=
"退保方式"
,
isNotEmpty
=
true
,
errorInfo
=
"退保方式不能为空"
)
@NotBlank
(
message
=
"退保方式:0自动1 手动不能为空"
)
@ExcelProperty
(
"退保方式"
)
@Schema
(
description
=
"退保方式:0自动1 手动"
)
private
Integer
reduceType
;
/**
* 投保派单日期类型 0 入职日期前一天
*/
@ExcelAttribute
(
name
=
"投保派单日期类型"
)
@ExcelProperty
(
"投保派单日期类型"
)
@Schema
(
description
=
"投保派单日期类型 0 入职日期前一天"
)
private
Integer
addAutoType
;
/**
* 投保派单日期投保时间
*/
@ExcelAttribute
(
name
=
"投保派单日期投保时间"
)
@Length
(
max
=
10
,
message
=
"投保派单日期投保时间不能超过10个字符"
)
@ExcelProperty
(
"投保派单日期投保时间"
)
@Schema
(
description
=
"投保派单日期投保时间"
)
private
String
addAutoDate
;
/**
* 保单开始时间 类型 0 入职当日
*/
@ExcelAttribute
(
name
=
"保单开始时间类型"
)
@ExcelProperty
(
"保单开始时间类型"
)
@Schema
(
description
=
"保单开始时间 类型 0 入职当日"
)
private
Integer
addStartDate
;
/**
* 续保派单日期类型 0 上一份保单截止日期
*/
@ExcelAttribute
(
name
=
"续保派单日期类型"
)
@ExcelProperty
(
"续保派单日期类型"
)
@Schema
(
description
=
"续保派单日期类型 0 上一份保单截止日期"
)
private
Integer
updateAutoType
;
/**
* 续保派单日期续保时间
*/
@ExcelAttribute
(
name
=
"续保派单日期续保时间"
)
@Length
(
max
=
10
,
message
=
"续保派单日期续保时间不能超过10个字符"
)
@ExcelProperty
(
"续保派单日期续保时间"
)
@Schema
(
description
=
"续保派单日期续保时间"
)
private
String
updateAutoDate
;
/**
* 续保保单开始时间 0 上一份保单截止日期+1天
*/
@ExcelAttribute
(
name
=
"续保保单开始时间"
)
@ExcelProperty
(
"续保保单开始时间"
)
@Schema
(
description
=
"续保保单开始时间 0 上一份保单截止日期+1天"
)
private
Integer
updateStartDate
;
/**
* 退保派单日期类型 0 离职日期
*/
@ExcelAttribute
(
name
=
"退保派单日期类型"
)
@ExcelProperty
(
"退保派单日期类型"
)
@Schema
(
description
=
"退保派单日期类型 0 离职日期"
)
private
Integer
reduceAutoType
;
/**
* 退保派单日期退保时间
*/
@ExcelAttribute
(
name
=
"退保派单日期退保时间"
)
@Length
(
max
=
10
,
message
=
"退保派单日期退保时间不能超过10个字符"
)
@ExcelProperty
(
"退保派单日期退保时间"
)
@Schema
(
description
=
"退保派单日期退保时间"
)
private
String
reduceAutoDate
;
/**
* 退保保单失效时间 0 离职日期+1天
*/
@ExcelAttribute
(
name
=
"退保保单失效时间"
)
@ExcelProperty
(
"退保保单失效时间"
)
@Schema
(
description
=
"退保保单失效时间 0 离职日期+1天"
)
private
Integer
reduceStartDate
;
/**
* 项目配置主表ID
*/
@ExcelAttribute
(
name
=
"项目配置主表ID"
,
isNotEmpty
=
true
,
errorInfo
=
"项目配置主表ID不能为空"
,
maxLength
=
32
)
@NotBlank
(
message
=
"项目配置主表ID不能为空"
)
@Length
(
max
=
32
,
message
=
"项目配置主表ID不能超过32个字符"
)
@ExcelProperty
(
"项目配置主表ID"
)
@Schema
(
description
=
"项目配置主表ID"
)
private
String
mainId
;
/**
* 默认信息是否允许修改 0是 1否
*/
@ExcelAttribute
(
name
=
"默认信息是否允许修改"
,
isNotEmpty
=
true
,
errorInfo
=
"默认信息是否允许修改不能为空"
)
@NotBlank
(
message
=
"默认信息是否允许修改 0是 1否不能为空"
)
@ExcelProperty
(
"默认信息是否允许修改"
)
@Schema
(
description
=
"默认信息是否允许修改 0是 1否"
)
private
Integer
updateFlag
;
/**
* 项目编码
*/
@ExcelAttribute
(
name
=
"项目编码"
)
@Length
(
max
=
50
,
message
=
"项目编码不能超过50个字符"
)
@ExcelProperty
(
"项目编码"
)
@Schema
(
description
=
"项目编码"
)
private
String
deptNo
;
/**
* 项目ID
*/
@ExcelAttribute
(
name
=
"项目ID"
)
@Length
(
max
=
32
,
message
=
"项目ID不能超过32个字符"
)
@ExcelProperty
(
"项目ID"
)
@Schema
(
description
=
"项目ID"
)
private
String
deptId
;
}
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/entity/TAutoInsurStandard.java
0 → 100644
View file @
4f683551
/*
* 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
.
archives
.
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.mybatis.base.BaseEntity
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
org.hibernate.validator.constraints.Length
;
import
javax.validation.constraints.NotBlank
;
/**
* 购买标准配置表
*
* @author fxj
* @date 2025-04-01 10:14:09
*/
@Data
@TableName
(
"t_auto_insur_standard"
)
@EqualsAndHashCode
(
callSuper
=
true
)
@Schema
(
description
=
"购买标准配置表"
)
public
class
TAutoInsurStandard
extends
BaseEntity
{
/**
* 主键
*/
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
@ExcelProperty
(
"主键"
)
@Schema
(
description
=
"主键"
)
private
String
id
;
/**
* 配置名称
*/
@ExcelAttribute
(
name
=
"配置名称"
,
isNotEmpty
=
true
,
errorInfo
=
"配置名称不能为空"
,
maxLength
=
50
)
@NotBlank
(
message
=
"配置名称不能为空"
)
@Length
(
max
=
50
,
message
=
"配置名称不能超过50个字符"
)
@ExcelProperty
(
"配置名称"
)
@Schema
(
description
=
"配置名称"
)
private
String
name
;
/**
* 保险公司
*/
@ExcelAttribute
(
name
=
"保险公司"
,
isNotEmpty
=
true
,
errorInfo
=
"保险公司不能为空"
)
@NotBlank
(
message
=
"保险公司不能为空"
)
@ExcelProperty
(
"保险公司"
)
@Schema
(
description
=
"保险公司"
)
private
Integer
company
;
/**
* 险种,下拉选项
*/
@ExcelAttribute
(
name
=
"险种"
,
isNotEmpty
=
true
,
errorInfo
=
"险种不能为空"
)
@NotBlank
(
message
=
"险种,下拉选项不能为空"
)
@ExcelProperty
(
"险种"
)
@Schema
(
description
=
"险种,下拉选项"
)
private
Integer
riskType
;
/**
* 购买标准,多值逗号分隔
*/
@ExcelAttribute
(
name
=
"购买标准"
,
isNotEmpty
=
true
,
errorInfo
=
"购买标准不能为空"
,
maxLength
=
100
)
@NotBlank
(
message
=
"购买标准,多值逗号分隔不能为空"
)
@Length
(
max
=
100
,
message
=
"购买标准,多值逗号分隔不能超过100个字符"
)
@ExcelProperty
(
"购买标准"
)
@Schema
(
description
=
"购买标准,多值逗号分隔"
)
private
String
standard
;
/**
* 派单-省
*/
@ExcelAttribute
(
name
=
"派单-省"
,
isNotEmpty
=
true
,
errorInfo
=
"派单-省不能为空"
)
@NotBlank
(
message
=
"派单-省不能为空"
)
@ExcelProperty
(
"派单-省"
)
@Schema
(
description
=
"派单-省"
)
private
Integer
buyProvince
;
/**
* 派单-市
*/
@ExcelAttribute
(
name
=
"派单-市"
,
isNotEmpty
=
true
,
errorInfo
=
"派单-市不能为空"
)
@NotBlank
(
message
=
"派单-市不能为空"
)
@ExcelProperty
(
"派单-市"
)
@Schema
(
description
=
"派单-市"
)
private
Integer
buyCity
;
/**
* 派单-县
*/
@ExcelAttribute
(
name
=
"派单-县"
)
@ExcelProperty
(
"派单-县"
)
@Schema
(
description
=
"派单-县"
)
private
Integer
buyTown
;
/**
* 商险配置表ID
*/
@ExcelAttribute
(
name
=
"商险配置表ID"
)
@Length
(
max
=
32
,
message
=
"商险配置表ID不能超过32个字符"
)
@ExcelProperty
(
"商险配置表ID"
)
@Schema
(
description
=
"商险配置表ID"
)
private
String
mainId
;
}
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/vo/TAutoInsurRuleInfoSearchVo.java
0 → 100644
View file @
4f683551
/*
* 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
.
archives
.
vo
;
import
com.yifu.cloud.plus.v1.yifu.archives.entity.TAutoInsurRuleInfo
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
java.time.LocalDateTime
;
/**
* 商险购买规则配置表
*
* @author fxj
* @date 2025-04-01 10:14:09
*/
@Data
public
class
TAutoInsurRuleInfoSearchVo
extends
TAutoInsurRuleInfo
{
/**
* 多选导出或删除等操作
*/
@Schema
(
description
=
"选中ID,多个逗号分割"
)
private
String
ids
;
/**
* 创建时间区间 [开始时间,结束时间]
*/
@Schema
(
description
=
"创建时间区间"
)
private
LocalDateTime
[]
createTimes
;
/**
* @Author fxj
* 查询数据起
**/
@Schema
(
description
=
"查询limit 开始"
)
private
int
limitStart
;
/**
* @Author fxj
* 查询数据止
**/
@Schema
(
description
=
"查询limit 数据条数"
)
private
int
limitEnd
;
}
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/vo/TAutoInsurRuleInfoVo.java
0 → 100644
View file @
4f683551
/*
* 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
.
archives
.
vo
;
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.vo.RowIndex
;
import
com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
org.hibernate.validator.constraints.Length
;
import
javax.validation.constraints.NotBlank
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
* 商险购买规则配置表
*
* @author fxj
* @date 2025-04-01 10:14:09
*/
@Data
public
class
TAutoInsurRuleInfoVo
extends
RowIndex
implements
Serializable
{
/**
* 主键
*/
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
@Length
(
max
=
32
,
message
=
"主键 不能超过32 个字符"
)
@ExcelAttribute
(
name
=
"主键"
)
@Schema
(
description
=
"主键"
)
@ExcelProperty
(
"主键"
)
private
String
id
;
/**
* 是否启用自动化:0是 1否
*/
@NotBlank
(
message
=
"是否启用自动化不能为空"
)
@ExcelAttribute
(
name
=
"是否启用自动化"
,
isNotEmpty
=
true
,
errorInfo
=
"是否启用自动化不能为空"
)
@Schema
(
description
=
"是否启用自动化"
)
@ExcelProperty
(
"是否启用自动化"
)
private
Integer
autoFlag
;
/**
* 投保方式:0自动1 手动
*/
@NotBlank
(
message
=
"投保方式不能为空"
)
@ExcelAttribute
(
name
=
"投保方式"
,
isNotEmpty
=
true
,
errorInfo
=
"投保方式不能为空"
)
@Schema
(
description
=
"投保方式"
)
@ExcelProperty
(
"投保方式"
)
private
Integer
addType
;
/**
* 续保方式:0自动1 手动
*/
@NotBlank
(
message
=
"续保方式"
)
@ExcelAttribute
(
name
=
"续保方式"
,
isNotEmpty
=
true
,
errorInfo
=
"续保方式不能为空"
)
@Schema
(
description
=
"续保方式"
)
@ExcelProperty
(
"续保方式"
)
private
Integer
updateType
;
/**
* 退保方式:0自动1 手动
*/
@NotBlank
(
message
=
"退保方式 不能为空"
)
@ExcelAttribute
(
name
=
"退保方式"
,
isNotEmpty
=
true
,
errorInfo
=
"退保方式不能为空"
)
@Schema
(
description
=
"退保方式"
)
@ExcelProperty
(
"退保方式"
)
private
Integer
reduceType
;
/**
* 投保派单日期类型 0 入职日期前一天
*/
@ExcelAttribute
(
name
=
"投保派单日期类型"
)
@Schema
(
description
=
"投保派单日期类型"
)
@ExcelProperty
(
"投保派单日期类型"
)
private
Integer
addAutoType
;
/**
* 投保派单日期投保时间
*/
@Length
(
max
=
10
,
message
=
"投保派单日期投保时间 不能超过10 个字符"
)
@ExcelAttribute
(
name
=
"投保派单日期投保时间"
)
@Schema
(
description
=
"投保派单日期投保时间"
)
@ExcelProperty
(
"投保派单日期投保时间"
)
private
String
addAutoDate
;
/**
* 保单开始时间 类型 0 入职当日
*/
@ExcelAttribute
(
name
=
"保单开始时间"
)
@Schema
(
description
=
"保单开始时间类型 0 入职当日"
)
@ExcelProperty
(
"保单开始时间类型"
)
private
Integer
addStartDate
;
/**
* 续保派单日期类型 0 上一份保单截止日期
*/
@ExcelAttribute
(
name
=
"续保派单日期类型"
)
@Schema
(
description
=
"续保派单日期类型 0 上一份保单截止日期"
)
@ExcelProperty
(
"续保派单日期类型"
)
private
Integer
updateAutoType
;
/**
* 续保派单日期续保时间
*/
@Length
(
max
=
10
,
message
=
"续保派单日期续保时间 不能超过10 个字符"
)
@ExcelAttribute
(
name
=
"续保派单日期续保时间"
)
@Schema
(
description
=
"续保派单日期续保时间"
)
@ExcelProperty
(
"续保派单日期续保时间"
)
private
String
updateAutoDate
;
/**
* 续保保单开始时间 0 上一份保单截止日期+1天
*/
@ExcelAttribute
(
name
=
"续保保单开始时间"
)
@Schema
(
description
=
"续保保单开始时间 0 上一份保单截止日期+1天"
)
@ExcelProperty
(
"续保保单开始时间"
)
private
Integer
updateStartDate
;
/**
* 退保派单日期类型 0 离职日期
*/
@ExcelAttribute
(
name
=
"退保派单日期类型"
)
@Schema
(
description
=
"退保派单日期类型 0 离职日期"
)
@ExcelProperty
(
"退保派单日期类型"
)
private
Integer
reduceAutoType
;
/**
* 退保派单日期退保时间
*/
@Length
(
max
=
10
,
message
=
"退保派单日期退保时间 不能超过10 个字符"
)
@ExcelAttribute
(
name
=
"退保派单日期退保时间"
)
@Schema
(
description
=
"退保派单日期退保时间"
)
@ExcelProperty
(
"退保派单日期退保时间"
)
private
String
reduceAutoDate
;
/**
* 退保保单失效时间 0 离职日期+1天
*/
@ExcelAttribute
(
name
=
"退保保单失效时间"
)
@Schema
(
description
=
"退保保单失效时间 0 离职日期+1天"
)
@ExcelProperty
(
"退保保单失效时间"
)
private
Integer
reduceStartDate
;
/**
* 项目配置主表ID
*/
@Length
(
max
=
32
,
message
=
"项目配置主表ID 不能超过32 个字符"
)
@ExcelAttribute
(
name
=
"项目配置主表ID"
)
@Schema
(
description
=
"项目配置主表ID"
)
@ExcelProperty
(
"项目配置主表ID"
)
private
String
mainId
;
/**
* 默认信息是否允许修改 0是 1否
*/
@NotBlank
(
message
=
"默认信息是否允许修改不能为空"
)
@ExcelAttribute
(
name
=
"默认信息是否允许修改"
,
isNotEmpty
=
true
,
errorInfo
=
"默认信息是否允许修改 不能为空"
)
@Schema
(
description
=
"默认信息是否允许修改 0是 1否"
)
@ExcelProperty
(
"默认信息是否允许修改"
)
private
Integer
updateFlag
;
}
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/vo/TAutoInsurStandardSearchVo.java
0 → 100644
View file @
4f683551
/*
* 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
.
archives
.
vo
;
import
com.yifu.cloud.plus.v1.yifu.archives.entity.TAutoInsurStandard
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
java.time.LocalDateTime
;
/**
* 购买标准配置表
*
* @author fxj
* @date 2025-04-01 10:14:09
*/
@Data
public
class
TAutoInsurStandardSearchVo
extends
TAutoInsurStandard
{
/**
* 多选导出或删除等操作
*/
@Schema
(
description
=
"选中ID,多个逗号分割"
)
private
String
ids
;
/**
* 创建时间区间 [开始时间,结束时间]
*/
@Schema
(
description
=
"创建时间区间"
)
private
LocalDateTime
[]
createTimes
;
/**
* @Author fxj
* 查询数据起
**/
@Schema
(
description
=
"查询limit 开始"
)
private
int
limitStart
;
/**
* @Author fxj
* 查询数据止
**/
@Schema
(
description
=
"查询limit 数据条数"
)
private
int
limitEnd
;
}
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/vo/TAutoInsurStandardVo.java
0 → 100644
View file @
4f683551
/*
* 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
.
archives
.
vo
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
com.yifu.cloud.plus.v1.yifu.common.core.vo.RowIndex
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
org.hibernate.validator.constraints.Length
;
import
javax.validation.constraints.NotBlank
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
* 购买标准配置表
*
* @author fxj
* @date 2025-04-01 10:14:09
*/
@Data
public
class
TAutoInsurStandardVo
extends
RowIndex
implements
Serializable
{
/**
* 主键
*/
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
@Length
(
max
=
32
,
message
=
"主键 不能超过32 个字符"
)
@ExcelAttribute
(
name
=
"主键"
)
@Schema
(
description
=
"主键"
)
@ExcelProperty
(
"主键"
)
private
String
id
;
/**
* 配置名称
*/
@NotBlank
(
message
=
"配置名称不能为空"
)
@Length
(
max
=
50
,
message
=
"配置名称不能超过50 个字符"
)
@ExcelAttribute
(
name
=
"配置名称"
,
isNotEmpty
=
true
,
errorInfo
=
"配置名称 不能为空"
,
maxLength
=
50
)
@Schema
(
description
=
"配置名称"
)
@ExcelProperty
(
"配置名称"
)
private
String
name
;
/**
* 保险公司
*/
@NotBlank
(
message
=
"保险公司不能为空"
)
@ExcelAttribute
(
name
=
"保险公司"
,
isNotEmpty
=
true
,
errorInfo
=
"保险公司不能为空"
)
@Schema
(
description
=
"保险公司"
)
@ExcelProperty
(
"保险公司"
)
private
Integer
company
;
/**
* 险种,下拉选项
*/
@NotBlank
(
message
=
"险种不能为空"
)
@ExcelAttribute
(
name
=
"险种"
,
isNotEmpty
=
true
,
errorInfo
=
"险种不能为空"
)
@Schema
(
description
=
"险种"
)
@ExcelProperty
(
"险种"
)
private
Integer
riskType
;
/**
* 购买标准,多值逗号分隔
*/
@NotBlank
(
message
=
"购买标准不能为空"
)
@Length
(
max
=
100
,
message
=
"购买标准不能超过100 个字符"
)
@ExcelAttribute
(
name
=
"购买标准"
,
isNotEmpty
=
true
,
errorInfo
=
"购买标准不能为空"
,
maxLength
=
100
)
@Schema
(
description
=
"购买标准"
)
@ExcelProperty
(
"购买标准"
)
private
String
standard
;
/**
* 派单-省
*/
@NotBlank
(
message
=
"派单-省 不能为空"
)
@ExcelAttribute
(
name
=
"派单-省"
,
isNotEmpty
=
true
,
errorInfo
=
"派单-省 不能为空"
)
@Schema
(
description
=
"派单-省"
)
@ExcelProperty
(
"派单-省"
)
private
Integer
buyProvince
;
/**
* 派单-市
*/
@NotBlank
(
message
=
"派单-市 不能为空"
)
@ExcelAttribute
(
name
=
"派单-市"
,
isNotEmpty
=
true
,
errorInfo
=
"派单-市 不能为空"
)
@Schema
(
description
=
"派单-市"
)
@ExcelProperty
(
"派单-市"
)
private
Integer
buyCity
;
/**
* 派单-县
*/
@ExcelAttribute
(
name
=
"派单-县"
)
@Schema
(
description
=
"派单-县"
)
@ExcelProperty
(
"派单-县"
)
private
Integer
buyTown
;
/**
* 商险配置表ID
*/
@Length
(
max
=
32
,
message
=
"商险配置表ID 不能超过32 个字符"
)
@ExcelAttribute
(
name
=
"商险配置表ID"
)
@Schema
(
description
=
"商险配置表ID"
)
@ExcelProperty
(
"商险配置表ID"
)
private
String
mainId
;
}
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/vo/TAutoMainRelAddVo.java
View file @
4f683551
...
@@ -16,10 +16,7 @@
...
@@ -16,10 +16,7 @@
*/
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
archives
.
vo
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
archives
.
vo
;
import
com.yifu.cloud.plus.v1.yifu.archives.entity.SysAutoDictItem
;
import
com.yifu.cloud.plus.v1.yifu.archives.entity.*
;
import
com.yifu.cloud.plus.v1.yifu.archives.entity.TAutoEmpRuleInfo
;
import
com.yifu.cloud.plus.v1.yifu.archives.entity.TAutoMainRel
;
import
com.yifu.cloud.plus.v1.yifu.archives.entity.TAutoRuleLog
;
import
lombok.Data
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.io.Serializable
;
...
@@ -39,4 +36,8 @@ public class TAutoMainRelAddVo implements Serializable {
...
@@ -39,4 +36,8 @@ public class TAutoMainRelAddVo implements Serializable {
private
TAutoEmpRuleInfo
autoEmpRuleInfo
;
private
TAutoEmpRuleInfo
autoEmpRuleInfo
;
//岗位信息表
//岗位信息表
private
List
<
SysAutoDictItem
>
autoDictItems
;
private
List
<
SysAutoDictItem
>
autoDictItems
;
//商险规则表
private
TAutoInsurRuleInfo
autoInsurRuleInfo
;
//商险购买标准配置表
private
List
<
TAutoInsurStandard
>
insurStandards
;
}
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/controller/TAutoInsurRuleInfoController.java
0 → 100644
View file @
4f683551
/*
* 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
.
archives
.
controller
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.yifu.archives.entity.TAutoInsurRuleInfo
;
import
com.yifu.cloud.plus.v1.yifu.archives.service.TAutoInsurRuleInfoService
;
import
com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoInsurRuleInfoSearchVo
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.ErrorMessage
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
lombok.RequiredArgsConstructor
;
import
lombok.SneakyThrows
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.multipart.MultipartFile
;
import
javax.servlet.http.HttpServletResponse
;
import
java.util.List
;
/**
* 商险购买规则配置表
*
* @author fxj
* @date 2025-04-01 10:14:09
*/
@RestController
@RequiredArgsConstructor
@RequestMapping
(
"/tautoinsurruleinfo"
)
@Tag
(
name
=
"商险购买规则配置表管理"
)
public
class
TAutoInsurRuleInfoController
{
private
final
TAutoInsurRuleInfoService
tAutoInsurRuleInfoService
;
/**
* 简单分页查询
* @param page 分页对象
* @param tAutoInsurRuleInfo 商险购买规则配置表
* @return
*/
@Operation
(
description
=
"简单分页查询"
)
@GetMapping
(
"/page"
)
public
R
<
IPage
<
TAutoInsurRuleInfo
>>
getTAutoInsurRuleInfoPage
(
Page
<
TAutoInsurRuleInfo
>
page
,
TAutoInsurRuleInfoSearchVo
tAutoInsurRuleInfo
)
{
return
new
R
<>(
tAutoInsurRuleInfoService
.
getTAutoInsurRuleInfoPage
(
page
,
tAutoInsurRuleInfo
));
}
/**
* 不分页查询
* @param tAutoInsurRuleInfo 商险购买规则配置表
* @return
*/
@Operation
(
summary
=
"不分页查询"
,
description
=
"不分页查询"
)
@PostMapping
(
"/noPage"
)
//@PreAuthorize("@pms.hasPermission('demo_tautoinsurruleinfo_get')" )
public
R
<
List
<
TAutoInsurRuleInfo
>>
getTAutoInsurRuleInfoNoPage
(
@RequestBody
TAutoInsurRuleInfoSearchVo
tAutoInsurRuleInfo
)
{
return
R
.
ok
(
tAutoInsurRuleInfoService
.
noPageDiy
(
tAutoInsurRuleInfo
));
}
/**
* 通过id查询商险购买规则配置表
* @param id id
* @return R
*/
@Operation
(
summary
=
"通过id查询"
,
description
=
"通过id查询:hasPermission('demo_tautoinsurruleinfo_get')"
)
@GetMapping
(
"/{id}"
)
@PreAuthorize
(
"@pms.hasPermission('demo_tautoinsurruleinfo_get')"
)
public
R
<
TAutoInsurRuleInfo
>
getById
(
@PathVariable
(
"id"
)
String
id
)
{
return
R
.
ok
(
tAutoInsurRuleInfoService
.
getById
(
id
));
}
/**
* 新增商险购买规则配置表
* @param tAutoInsurRuleInfo 商险购买规则配置表
* @return R
*/
@Operation
(
summary
=
"新增商险购买规则配置表"
,
description
=
"新增商险购买规则配置表:hasPermission('demo_tautoinsurruleinfo_add')"
)
@SysLog
(
"新增商险购买规则配置表"
)
@PostMapping
@PreAuthorize
(
"@pms.hasPermission('demo_tautoinsurruleinfo_add')"
)
public
R
<
Boolean
>
save
(
@RequestBody
TAutoInsurRuleInfo
tAutoInsurRuleInfo
)
{
return
R
.
ok
(
tAutoInsurRuleInfoService
.
save
(
tAutoInsurRuleInfo
));
}
/**
* 修改商险购买规则配置表
* @param tAutoInsurRuleInfo 商险购买规则配置表
* @return R
*/
@Operation
(
summary
=
"修改商险购买规则配置表"
,
description
=
"修改商险购买规则配置表:hasPermission('demo_tautoinsurruleinfo_edit')"
)
@SysLog
(
"修改商险购买规则配置表"
)
@PutMapping
@PreAuthorize
(
"@pms.hasPermission('demo_tautoinsurruleinfo_edit')"
)
public
R
<
Boolean
>
updateById
(
@RequestBody
TAutoInsurRuleInfo
tAutoInsurRuleInfo
)
{
return
R
.
ok
(
tAutoInsurRuleInfoService
.
updateById
(
tAutoInsurRuleInfo
));
}
/**
* 通过id删除商险购买规则配置表
* @param id id
* @return R
*/
@Operation
(
summary
=
"通过id删除商险购买规则配置表"
,
description
=
"通过id删除商险购买规则配置表:hasPermission('demo_tautoinsurruleinfo_del')"
)
@SysLog
(
"通过id删除商险购买规则配置表"
)
@DeleteMapping
(
"/{id}"
)
@PreAuthorize
(
"@pms.hasPermission('demo_tautoinsurruleinfo_del')"
)
public
R
<
Boolean
>
removeById
(
@PathVariable
String
id
)
{
return
R
.
ok
(
tAutoInsurRuleInfoService
.
removeById
(
id
));
}
/**
* 商险购买规则配置表 批量导入
*
* @author fxj
* @date 2025-04-01 10:14:09
**/
@SneakyThrows
@Operation
(
description
=
"批量新增商险购买规则配置表 hasPermission('demo_tautoinsurruleinfo-batch-import')"
)
@SysLog
(
"批量新增商险购买规则配置表"
)
@PostMapping
(
"/importListAdd"
)
@PreAuthorize
(
"@pms.hasPermission('demo_tautoinsurruleinfo-batch-import')"
)
public
R
<
List
<
ErrorMessage
>>
importListAdd
(
@RequestBody
MultipartFile
file
){
return
tAutoInsurRuleInfoService
.
importDiy
(
file
.
getInputStream
());
}
/**
* 商险购买规则配置表 批量导出
* @author fxj
* @date 2025-04-01 10:14:09
**/
@Operation
(
description
=
"导出商险购买规则配置表 hasPermission('demo_tautoinsurruleinfo-export')"
)
@PostMapping
(
"/export"
)
@PreAuthorize
(
"@pms.hasPermission('demo_tautoinsurruleinfo-export')"
)
public
void
export
(
HttpServletResponse
response
,
@RequestBody
TAutoInsurRuleInfoSearchVo
searchVo
)
{
tAutoInsurRuleInfoService
.
listExport
(
response
,
searchVo
);
}
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/controller/TAutoInsurStandardController.java
0 → 100644
View file @
4f683551
/*
* 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
.
archives
.
controller
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.toolkit.Wrappers
;
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.common.log.annotation.SysLog
;
import
com.yifu.cloud.plus.v1.yifu.demo.entity.TAutoInsurStandard
;
import
com.yifu.cloud.plus.v1.yifu.demo.service.TAutoInsurStandardService
;
import
com.yifu.cloud.plus.v1.yifu.demo.vo.TAutoInsurStandardVo
;
import
com.yifu.cloud.plus.v1.yifu.demo.vo.TAutoInsurStandardSearchVo
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.security.SecurityRequirement
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
lombok.RequiredArgsConstructor
;
import
org.springframework.http.HttpHeaders
;
import
org.springframework.web.bind.annotation.*
;
/**
* 购买标准配置表
*
* @author fxj
* @date 2025-04-01 10:14:09
*/
@RestController
@RequiredArgsConstructor
@RequestMapping
(
"/tautoinsurstandard"
)
@Tag
(
name
=
"购买标准配置表管理"
)
public
class
TAutoInsurStandardController
{
private
final
TAutoInsurStandardService
tAutoInsurStandardService
;
/**
* 简单分页查询
* @param page 分页对象
* @param tAutoInsurStandard 购买标准配置表
* @return
*/
@Operation
(
description
=
"简单分页查询"
)
@GetMapping
(
"/page"
)
public
R
<
IPage
<
TAutoInsurStandard
>>
getTAutoInsurStandardPage
(
Page
<
TAutoInsurStandard
>
page
,
TAutoInsurStandardSearchVo
tAutoInsurStandard
)
{
return
new
R
<>(
tAutoInsurStandardService
.
getTAutoInsurStandardPage
(
page
,
tAutoInsurStandard
));
}
/**
* 不分页查询
* @param tAutoInsurStandard 购买标准配置表
* @return
*/
@Operation
(
summary
=
"不分页查询"
,
description
=
"不分页查询"
)
@PostMapping
(
"/noPage"
)
//@PreAuthorize("@pms.hasPermission('demo_tautoinsurstandard_get')" )
public
R
<
List
<
TAutoInsurStandard
>>
getTAutoInsurStandardNoPage
(
@RequestBody
TAutoInsurStandardSearchVo
tAutoInsurStandard
)
{
return
R
.
ok
(
tAutoInsurStandardService
.
noPageDiy
(
tAutoInsurStandard
));
}
/**
* 通过id查询购买标准配置表
* @param id id
* @return R
*/
@Operation
(
summary
=
"通过id查询"
,
description
=
"通过id查询:hasPermission('demo_tautoinsurstandard_get')"
)
@GetMapping
(
"/{id}"
)
@PreAuthorize
(
"@pms.hasPermission('demo_tautoinsurstandard_get')"
)
public
R
<
TAutoInsurStandard
>
getById
(
@PathVariable
(
"id"
)
String
id
)
{
return
R
.
ok
(
tAutoInsurStandardService
.
getById
(
id
));
}
/**
* 新增购买标准配置表
* @param tAutoInsurStandard 购买标准配置表
* @return R
*/
@Operation
(
summary
=
"新增购买标准配置表"
,
description
=
"新增购买标准配置表:hasPermission('demo_tautoinsurstandard_add')"
)
@SysLog
(
"新增购买标准配置表"
)
@PostMapping
@PreAuthorize
(
"@pms.hasPermission('demo_tautoinsurstandard_add')"
)
public
R
<
Boolean
>
save
(
@RequestBody
TAutoInsurStandard
tAutoInsurStandard
)
{
return
R
.
ok
(
tAutoInsurStandardService
.
save
(
tAutoInsurStandard
));
}
/**
* 修改购买标准配置表
* @param tAutoInsurStandard 购买标准配置表
* @return R
*/
@Operation
(
summary
=
"修改购买标准配置表"
,
description
=
"修改购买标准配置表:hasPermission('demo_tautoinsurstandard_edit')"
)
@SysLog
(
"修改购买标准配置表"
)
@PutMapping
@PreAuthorize
(
"@pms.hasPermission('demo_tautoinsurstandard_edit')"
)
public
R
<
Boolean
>
updateById
(
@RequestBody
TAutoInsurStandard
tAutoInsurStandard
)
{
return
R
.
ok
(
tAutoInsurStandardService
.
updateById
(
tAutoInsurStandard
));
}
/**
* 通过id删除购买标准配置表
* @param id id
* @return R
*/
@Operation
(
summary
=
"通过id删除购买标准配置表"
,
description
=
"通过id删除购买标准配置表:hasPermission('demo_tautoinsurstandard_del')"
)
@SysLog
(
"通过id删除购买标准配置表"
)
@DeleteMapping
(
"/{id}"
)
@PreAuthorize
(
"@pms.hasPermission('demo_tautoinsurstandard_del')"
)
public
R
<
Boolean
>
removeById
(
@PathVariable
String
id
)
{
return
R
.
ok
(
tAutoInsurStandardService
.
removeById
(
id
));
}
/**
* 购买标准配置表 批量导入
*
* @author fxj
* @date 2025-04-01 10:14:09
**/
@SneakyThrows
@Operation
(
description
=
"批量新增购买标准配置表 hasPermission('demo_tautoinsurstandard-batch-import')"
)
@SysLog
(
"批量新增购买标准配置表"
)
@PostMapping
(
"/importListAdd"
)
@PreAuthorize
(
"@pms.hasPermission('demo_tautoinsurstandard-batch-import')"
)
public
R
<
List
<
ErrorMessage
>>
importListAdd
(
@RequestBody
MultipartFile
file
){
return
tAutoInsurStandardService
.
importDiy
(
file
.
getInputStream
());
}
/**
* 购买标准配置表 批量导出
* @author fxj
* @date 2025-04-01 10:14:09
**/
@Operation
(
description
=
"导出购买标准配置表 hasPermission('demo_tautoinsurstandard-export')"
)
@PostMapping
(
"/export"
)
@PreAuthorize
(
"@pms.hasPermission('demo_tautoinsurstandard-export')"
)
public
void
export
(
HttpServletResponse
response
,
@RequestBody
TAutoInsurStandardSearchVo
searchVo
)
{
tAutoInsurStandardService
.
listExport
(
response
,
searchVo
);
}
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/mapper/TAutoInsurRuleInfoMapper.java
0 → 100644
View file @
4f683551
/*
* 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
.
archives
.
mapper
;
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.archives.entity.TAutoInsurRuleInfo
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
/**
* 商险购买规则配置表
*
* @author fxj
* @date 2025-04-01 10:14:09
*/
@Mapper
public
interface
TAutoInsurRuleInfoMapper
extends
BaseMapper
<
TAutoInsurRuleInfo
>
{
/**
* 商险购买规则配置表简单分页查询
* @param tAutoInsurRuleInfo 商险购买规则配置表
* @return
*/
IPage
<
TAutoInsurRuleInfo
>
getTAutoInsurRuleInfoPage
(
Page
<
TAutoInsurRuleInfo
>
page
,
@Param
(
"tAutoInsurRuleInfo"
)
TAutoInsurRuleInfo
tAutoInsurRuleInfo
);
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/mapper/TAutoInsurStandardMapper.java
0 → 100644
View file @
4f683551
/*
* 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
.
archives
.
mapper
;
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.archives.entity.TAutoInsurStandard
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
/**
* 购买标准配置表
*
* @author fxj
* @date 2025-04-01 10:14:09
*/
@Mapper
public
interface
TAutoInsurStandardMapper
extends
BaseMapper
<
TAutoInsurStandard
>
{
/**
* 购买标准配置表简单分页查询
* @param tAutoInsurStandard 购买标准配置表
* @return
*/
IPage
<
TAutoInsurStandard
>
getTAutoInsurStandardPage
(
Page
<
TAutoInsurStandard
>
page
,
@Param
(
"tAutoInsurStandard"
)
TAutoInsurStandard
tAutoInsurStandard
);
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/TAutoInsurRuleInfoService.java
0 → 100644
View file @
4f683551
/*
* 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
.
archives
.
service
;
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.archives.entity.TAutoInsurRuleInfo
;
import
com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoInsurRuleInfoSearchVo
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.ErrorMessage
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
javax.servlet.http.HttpServletResponse
;
import
java.io.InputStream
;
import
java.util.List
;
/**
* 商险购买规则配置表
*
* @author fxj
* @date 2025-04-01 10:14:09
*/
public
interface
TAutoInsurRuleInfoService
extends
IService
<
TAutoInsurRuleInfo
>
{
/**
* 商险购买规则配置表简单分页查询
* @param tAutoInsurRuleInfo 商险购买规则配置表
* @return
*/
IPage
<
TAutoInsurRuleInfo
>
getTAutoInsurRuleInfoPage
(
Page
<
TAutoInsurRuleInfo
>
page
,
TAutoInsurRuleInfoSearchVo
tAutoInsurRuleInfo
);
R
<
List
<
ErrorMessage
>>
importDiy
(
InputStream
inputStream
);
void
listExport
(
HttpServletResponse
response
,
TAutoInsurRuleInfoSearchVo
searchVo
);
List
<
TAutoInsurRuleInfo
>
noPageDiy
(
TAutoInsurRuleInfoSearchVo
searchVo
);
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/TAutoInsurStandardService.java
0 → 100644
View file @
4f683551
/*
* 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
.
archives
.
service
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.yifu.cloud.plus.v1.yifu.archives.entity.TAutoInsurStandard
;
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.ErrorMessage
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.archives.vo.TAutoInsurStandardSearchVo
;
import
javax.servlet.http.HttpServletResponse
;
import
java.io.InputStream
;
import
java.util.List
;
/**
* 购买标准配置表
*
* @author fxj
* @date 2025-04-01 10:14:09
*/
public
interface
TAutoInsurStandardService
extends
IService
<
TAutoInsurStandard
>
{
/**
* 购买标准配置表简单分页查询
* @param tAutoInsurStandard 购买标准配置表
* @return
*/
IPage
<
TAutoInsurStandard
>
getTAutoInsurStandardPage
(
Page
<
TAutoInsurStandard
>
page
,
TAutoInsurStandardSearchVo
tAutoInsurStandard
);
R
<
List
<
ErrorMessage
>>
importDiy
(
InputStream
inputStream
);
void
listExport
(
HttpServletResponse
response
,
TAutoInsurStandardSearchVo
searchVo
);
List
<
TAutoInsurStandard
>
noPageDiy
(
TAutoInsurStandardSearchVo
searchVo
);
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/TAutoInsurRuleInfoServiceImpl.java
0 → 100644
View file @
4f683551
This diff is collapsed.
Click to expand it.
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/TAutoInsurStandardServiceImpl.java
0 → 100644
View file @
4f683551
This diff is collapsed.
Click to expand it.
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/TAutoMainRelServiceImpl.java
View file @
4f683551
...
@@ -80,6 +80,9 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
...
@@ -80,6 +80,9 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
@Autowired
@Autowired
private
SysAutoDictMapper
autoDictMapper
;
private
SysAutoDictMapper
autoDictMapper
;
@Autowired
private
TAutoInsurRuleInfoMapper
autoInsurRuleInfoMapper
;
public
static
final
String
itemsLabel
=
"label,description,disable"
;
public
static
final
String
itemsLabel
=
"label,description,disable"
;
public
static
final
String
itemsLabelRepeat
=
"同一项目岗位名称不可重复"
;
public
static
final
String
itemsLabelRepeat
=
"同一项目岗位名称不可重复"
;
...
@@ -274,9 +277,17 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
...
@@ -274,9 +277,17 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
return
R
.
failed
(
errorMessage
.
getMessage
());
return
R
.
failed
(
errorMessage
.
getMessage
());
}
}
}
}
//校验商险规则信息
TAutoInsurRuleInfo
autoInsurRuleInfo
=
entity
.
getAutoInsurRuleInfo
();
if
(
Common
.
isNotNull
(
autoInsurRuleInfo
)){
ExcelUtil
<
TAutoInsurRuleInfo
>
excelUtil
=
new
ExcelUtil
<>(
TAutoInsurRuleInfo
.
class
);
ErrorMessage
errorMessage
=
excelUtil
.
checkEntity
(
autoInsurRuleInfo
,
0
);
if
(
Common
.
isNotNull
(
errorMessage
)){
return
R
.
failed
(
errorMessage
.
getMessage
());
}
}
// 校验字典项是否有重复标签
// 校验字典项是否有重复标签
List
<
SysAutoDictItem
>
autoDictItems
=
entity
.
getAutoDictItems
();
List
<
SysAutoDictItem
>
autoDictItems
=
entity
.
getAutoDictItems
();
Set
<
String
>
repeatItems
=
new
HashSet
<>();
if
(!
checkDictItemsForDuplicates
(
autoDictItems
))
{
if
(!
checkDictItemsForDuplicates
(
autoDictItems
))
{
return
R
.
failed
(
itemsLabelRepeat
);
return
R
.
failed
(
itemsLabelRepeat
);
}
}
...
@@ -305,6 +316,13 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
...
@@ -305,6 +316,13 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
autoEmpRuleInfo
.
setMainId
(
autoMainRel
.
getId
());
autoEmpRuleInfo
.
setMainId
(
autoMainRel
.
getId
());
autoEmpRuleInfoMapper
.
insert
(
autoEmpRuleInfo
);
autoEmpRuleInfoMapper
.
insert
(
autoEmpRuleInfo
);
}
}
//新增档案规则
if
(
Common
.
isNotNull
(
autoInsurRuleInfo
)){
autoInsurRuleInfo
.
setDeptNo
(
autoMainRel
.
getDeptNo
());
autoInsurRuleInfo
.
setDeptId
(
autoMainRel
.
getDeptId
());
autoInsurRuleInfo
.
setMainId
(
autoMainRel
.
getId
());
autoInsurRuleInfoMapper
.
insert
(
autoInsurRuleInfo
);
}
return
R
.
ok
();
return
R
.
ok
();
}
catch
(
Exception
e
){
}
catch
(
Exception
e
){
// 捕获异常并返回友好提示
// 捕获异常并返回友好提示
...
...
yifu-archives/yifu-archives-biz/src/main/resources/mapper/TAutoInsurRuleInfoMapper.xml
0 → 100644
View file @
4f683551
<?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.archives.mapper.TAutoInsurRuleInfoMapper"
>
<resultMap
id=
"tAutoInsurRuleInfoMap"
type=
"com.yifu.cloud.plus.v1.yifu.archives.entity.TAutoInsurRuleInfo"
>
<id
property=
"id"
column=
"ID"
/>
<result
property=
"autoFlag"
column=
"AUTO_FLAG"
/>
<result
property=
"addType"
column=
"ADD_TYPE"
/>
<result
property=
"updateType"
column=
"UPDATE_TYPE"
/>
<result
property=
"reduceType"
column=
"REDUCE_TYPE"
/>
<result
property=
"addAutoType"
column=
"ADD_AUTO_TYPE"
/>
<result
property=
"addAutoDate"
column=
"ADD_AUTO_DATE"
/>
<result
property=
"addStartDate"
column=
"ADD_START_DATE"
/>
<result
property=
"updateAutoType"
column=
"UPDATE_AUTO_TYPE"
/>
<result
property=
"updateAutoDate"
column=
"UPDATE_AUTO_DATE"
/>
<result
property=
"updateStartDate"
column=
"UPDATE_START_DATE"
/>
<result
property=
"reduceAutoType"
column=
"REDUCE_AUTO_TYPE"
/>
<result
property=
"reduceAutoDate"
column=
"REDUCE_AUTO_DATE"
/>
<result
property=
"reduceStartDate"
column=
"REDUCE_START_DATE"
/>
<result
property=
"mainId"
column=
"MAIN_ID"
/>
<result
property=
"updateFlag"
column=
"UPDATE_FLAG"
/>
<result
property=
"createBy"
column=
"CREATE_BY"
/>
<result
property=
"createName"
column=
"CREATE_NAME"
/>
<result
property=
"createTime"
column=
"CREATE_TIME"
/>
<result
property=
"updateBy"
column=
"UPDATE_BY"
/>
<result
property=
"updateTime"
column=
"UPDATE_TIME"
/>
<result
property=
"deptNo"
column=
"DEPT_NO"
/>
<result
property=
"deptId"
column=
"DEPT_ID"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
a.ID,
a.AUTO_FLAG,
a.ADD_TYPE,
a.UPDATE_TYPE,
a.REDUCE_TYPE,
a.ADD_AUTO_TYPE,
a.ADD_AUTO_DATE,
a.ADD_START_DATE,
a.UPDATE_AUTO_TYPE,
a.UPDATE_AUTO_DATE,
a.UPDATE_START_DATE,
a.REDUCE_AUTO_TYPE,
a.REDUCE_AUTO_DATE,
a.REDUCE_START_DATE,
a.MAIN_ID,
a.UPDATE_FLAG,
a.CREATE_BY,
a.CREATE_NAME,
a.CREATE_TIME,
a.UPDATE_BY,
a.UPDATE_TIME,
a.DEPT_NO,
a.DEPT_ID
</sql>
<sql
id=
"tAutoInsurRuleInfo_where"
>
<if
test=
"tAutoInsurRuleInfo != null"
>
<if
test=
"tAutoInsurRuleInfo.id != null and tAutoInsurRuleInfo.id.trim() != ''"
>
AND a.ID = #{tAutoInsurRuleInfo.id}
</if>
<if
test=
"tAutoInsurRuleInfo.autoFlag != null"
>
AND a.AUTO_FLAG = #{tAutoInsurRuleInfo.autoFlag}
</if>
<if
test=
"tAutoInsurRuleInfo.addType != null"
>
AND a.ADD_TYPE = #{tAutoInsurRuleInfo.addType}
</if>
<if
test=
"tAutoInsurRuleInfo.updateType != null"
>
AND a.UPDATE_TYPE = #{tAutoInsurRuleInfo.updateType}
</if>
<if
test=
"tAutoInsurRuleInfo.reduceType != null"
>
AND a.REDUCE_TYPE = #{tAutoInsurRuleInfo.reduceType}
</if>
<if
test=
"tAutoInsurRuleInfo.addAutoType != null"
>
AND a.ADD_AUTO_TYPE = #{tAutoInsurRuleInfo.addAutoType}
</if>
<if
test=
"tAutoInsurRuleInfo.addAutoDate != null and tAutoInsurRuleInfo.addAutoDate.trim() != ''"
>
AND a.ADD_AUTO_DATE = #{tAutoInsurRuleInfo.addAutoDate}
</if>
<if
test=
"tAutoInsurRuleInfo.addStartDate != null"
>
AND a.ADD_START_DATE = #{tAutoInsurRuleInfo.addStartDate}
</if>
<if
test=
"tAutoInsurRuleInfo.updateAutoType != null"
>
AND a.UPDATE_AUTO_TYPE = #{tAutoInsurRuleInfo.updateAutoType}
</if>
<if
test=
"tAutoInsurRuleInfo.updateAutoDate != null and tAutoInsurRuleInfo.updateAutoDate.trim() != ''"
>
AND a.UPDATE_AUTO_DATE = #{tAutoInsurRuleInfo.updateAutoDate}
</if>
<if
test=
"tAutoInsurRuleInfo.updateStartDate != null"
>
AND a.UPDATE_START_DATE = #{tAutoInsurRuleInfo.updateStartDate}
</if>
<if
test=
"tAutoInsurRuleInfo.reduceAutoType != null"
>
AND a.REDUCE_AUTO_TYPE = #{tAutoInsurRuleInfo.reduceAutoType}
</if>
<if
test=
"tAutoInsurRuleInfo.reduceAutoDate != null and tAutoInsurRuleInfo.reduceAutoDate.trim() != ''"
>
AND a.REDUCE_AUTO_DATE = #{tAutoInsurRuleInfo.reduceAutoDate}
</if>
<if
test=
"tAutoInsurRuleInfo.reduceStartDate != null"
>
AND a.REDUCE_START_DATE = #{tAutoInsurRuleInfo.reduceStartDate}
</if>
<if
test=
"tAutoInsurRuleInfo.mainId != null and tAutoInsurRuleInfo.mainId.trim() != ''"
>
AND a.MAIN_ID = #{tAutoInsurRuleInfo.mainId}
</if>
<if
test=
"tAutoInsurRuleInfo.updateFlag != null"
>
AND a.UPDATE_FLAG = #{tAutoInsurRuleInfo.updateFlag}
</if>
<if
test=
"tAutoInsurRuleInfo.createBy != null and tAutoInsurRuleInfo.createBy.trim() != ''"
>
AND a.CREATE_BY = #{tAutoInsurRuleInfo.createBy}
</if>
<if
test=
"tAutoInsurRuleInfo.createName != null and tAutoInsurRuleInfo.createName.trim() != ''"
>
AND a.CREATE_NAME = #{tAutoInsurRuleInfo.createName}
</if>
<if
test=
"tAutoInsurRuleInfo.createTime != null"
>
AND a.CREATE_TIME = #{tAutoInsurRuleInfo.createTime}
</if>
<if
test=
"tAutoInsurRuleInfo.updateBy != null and tAutoInsurRuleInfo.updateBy.trim() != ''"
>
AND a.UPDATE_BY = #{tAutoInsurRuleInfo.updateBy}
</if>
<if
test=
"tAutoInsurRuleInfo.updateTime != null"
>
AND a.UPDATE_TIME = #{tAutoInsurRuleInfo.updateTime}
</if>
<if
test=
"tAutoInsurRuleInfo.deptNo != null and tAutoInsurRuleInfo.deptNo.trim() != ''"
>
AND a.DEPT_NO = #{tAutoEmpRuleInfo.deptNo}
</if>
<if
test=
"tAutoInsurRuleInfo.deptId != null and tAutoInsurRuleInfo.deptId.trim() != ''"
>
AND a.DEPT_ID = #{tAutoEmpRuleInfo.deptId}
</if>
</if>
</sql>
<!--tAutoInsurRuleInfo简单分页查询-->
<select
id=
"getTAutoInsurRuleInfoPage"
resultMap=
"tAutoInsurRuleInfoMap"
>
SELECT
<include
refid=
"Base_Column_List"
/>
FROM t_auto_insur_rule_info a
<where>
1=1
<include
refid=
"tAutoInsurRuleInfo_where"
/>
</where>
</select>
</mapper>
yifu-archives/yifu-archives-biz/src/main/resources/mapper/TAutoInsurStandardMapper.xml
0 → 100644
View file @
4f683551
<?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.archives.mapper.TAutoInsurStandardMapper"
>
<resultMap
id=
"tAutoInsurStandardMap"
type=
"com.yifu.cloud.plus.v1.yifu.archives.entity.TAutoInsurStandard"
>
<id
property=
"id"
column=
"ID"
/>
<result
property=
"name"
column=
"NAME"
/>
<result
property=
"company"
column=
"COMPANY"
/>
<result
property=
"riskType"
column=
"RISK_TYPE"
/>
<result
property=
"standard"
column=
"STANDARD"
/>
<result
property=
"buyProvince"
column=
"BUY_PROVINCE"
/>
<result
property=
"buyCity"
column=
"BUY_CITY"
/>
<result
property=
"buyTown"
column=
"BUY_TOWN"
/>
<result
property=
"mainId"
column=
"MAIN_ID"
/>
<result
property=
"createBy"
column=
"CREATE_BY"
/>
<result
property=
"createName"
column=
"CREATE_NAME"
/>
<result
property=
"createTime"
column=
"CREATE_TIME"
/>
<result
property=
"updateBy"
column=
"UPDATE_BY"
/>
<result
property=
"updateTime"
column=
"UPDATE_TIME"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
a.ID,
a.NAME,
a.COMPANY,
a.RISK_TYPE,
a.STANDARD,
a.BUY_PROVINCE,
a.BUY_CITY,
a.BUY_TOWN,
a.MAIN_ID,
a.CREATE_BY,
a.CREATE_NAME,
a.CREATE_TIME,
a.UPDATE_BY,
a.UPDATE_TIME
</sql>
<sql
id=
"tAutoInsurStandard_where"
>
<if
test=
"tAutoInsurStandard != null"
>
<if
test=
"tAutoInsurStandard.id != null and tAutoInsurStandard.id.trim() != ''"
>
AND a.ID = #{tAutoInsurStandard.id}
</if>
<if
test=
"tAutoInsurStandard.name != null and tAutoInsurStandard.name.trim() != ''"
>
AND a.NAME = #{tAutoInsurStandard.name}
</if>
<if
test=
"tAutoInsurStandard.company != null"
>
AND a.COMPANY = #{tAutoInsurStandard.company}
</if>
<if
test=
"tAutoInsurStandard.riskType != null"
>
AND a.RISK_TYPE = #{tAutoInsurStandard.riskType}
</if>
<if
test=
"tAutoInsurStandard.standard != null and tAutoInsurStandard.standard.trim() != ''"
>
AND a.STANDARD = #{tAutoInsurStandard.standard}
</if>
<if
test=
"tAutoInsurStandard.buyProvince != null"
>
AND a.BUY_PROVINCE = #{tAutoInsurStandard.buyProvince}
</if>
<if
test=
"tAutoInsurStandard.buyCity != null"
>
AND a.BUY_CITY = #{tAutoInsurStandard.buyCity}
</if>
<if
test=
"tAutoInsurStandard.buyTown != null"
>
AND a.BUY_TOWN = #{tAutoInsurStandard.buyTown}
</if>
<if
test=
"tAutoInsurStandard.mainId != null and tAutoInsurStandard.mainId.trim() != ''"
>
AND a.MAIN_ID = #{tAutoInsurStandard.mainId}
</if>
<if
test=
"tAutoInsurStandard.createBy != null and tAutoInsurStandard.createBy.trim() != ''"
>
AND a.CREATE_BY = #{tAutoInsurStandard.createBy}
</if>
<if
test=
"tAutoInsurStandard.createName != null and tAutoInsurStandard.createName.trim() != ''"
>
AND a.CREATE_NAME = #{tAutoInsurStandard.createName}
</if>
<if
test=
"tAutoInsurStandard.createTime != null"
>
AND a.CREATE_TIME = #{tAutoInsurStandard.createTime}
</if>
<if
test=
"tAutoInsurStandard.updateBy != null and tAutoInsurStandard.updateBy.trim() != ''"
>
AND a.UPDATE_BY = #{tAutoInsurStandard.updateBy}
</if>
<if
test=
"tAutoInsurStandard.updateTime != null"
>
AND a.UPDATE_TIME = #{tAutoInsurStandard.updateTime}
</if>
</if>
</sql>
<!--tAutoInsurStandard简单分页查询-->
<select
id=
"getTAutoInsurStandardPage"
resultMap=
"tAutoInsurStandardMap"
>
SELECT
<include
refid=
"Base_Column_List"
/>
FROM t_auto_insur_standard a
<where>
1=1
<include
refid=
"tAutoInsurStandard_where"
/>
</where>
</select>
</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