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
95588c6d
You need to sign in or sign up before continuing.
Commit
95588c6d
authored
Jul 22, 2022
by
李灿灿
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
报错调试
parent
af2f9239
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
8 deletions
+25
-8
TInsuranceDetail.java
...loud/plus/v1/yifu/insurances/entity/TInsuranceDetail.java
+0
-6
InsuranceAddParam.java
...u/cloud/plus/v1/yifu/insurances/vo/InsuranceAddParam.java
+9
-0
InsuranceBatchParam.java
...cloud/plus/v1/yifu/insurances/vo/InsuranceBatchParam.java
+11
-0
InsuranceEditParam.java
.../cloud/plus/v1/yifu/insurances/vo/InsuranceEditParam.java
+4
-0
TInsuranceDetailMapper.xml
...-biz/src/main/resources/mapper/TInsuranceDetailMapper.xml
+1
-2
No files found.
yifu-insurances/yifu-insurances-api/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/entity/TInsuranceDetail.java
View file @
95588c6d
...
...
@@ -210,12 +210,6 @@ public class TInsuranceDetail extends BaseEntity {
@Schema
(
description
=
"预估保费"
)
private
BigDecimal
estimatePremium
;
/**
* 差额(实缴-预估)
*/
@Schema
(
description
=
"差额(实缴-预估)"
)
private
BigDecimal
settleBalance
;
/**
* 投保办理状态 1待投保 2投保中 3已投保 4投保退回 5 已减员
*/
...
...
yifu-insurances/yifu-insurances-api/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/vo/InsuranceAddParam.java
View file @
95588c6d
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
insurances
.
vo
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
java.io.Serializable
;
...
...
@@ -118,39 +119,47 @@ public class InsuranceAddParam implements Serializable {
/**
* 结算类型 (1、单独结算 2、合并结算-和工资一起结算)
*/
@JsonIgnore
private
Integer
settleType
;
/**
* 医疗额度
*/
@JsonIgnore
private
String
medicalQuota
;
/**
* 身故或残疾额度
*/
@JsonIgnore
private
String
dieDisableQuota
;
/**
* 险种主键
*/
@JsonIgnore
private
Long
insuranceTypeId
;
/**
* 商险购买地省code
*/
@JsonIgnore
private
Integer
insuranceProvince
;
/**
* 商险购买地市code
*/
@JsonIgnore
private
Integer
insuranceCity
;
/**
* 商险办理省code
*/
@JsonIgnore
private
Integer
insuranceHandleProvince
;
/**
* 商险办理城市code
*/
@JsonIgnore
private
Integer
insuranceHandleCity
;
}
yifu-insurances/yifu-insurances-api/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/vo/InsuranceBatchParam.java
View file @
95588c6d
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
insurances
.
vo
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
...
...
@@ -114,49 +115,59 @@ public class InsuranceBatchParam implements Serializable {
/**
* 结算类型 (1、单独结算 2、合并结算-和工资一起结算)
*/
@JsonIgnore
private
Integer
settleType
;
/**
* 医疗额度
*/
@JsonIgnore
private
String
medicalQuota
;
/**
* 身故或残疾额度
*/
@JsonIgnore
private
String
dieDisableQuota
;
/**
* 险种主键
*/
@JsonIgnore
private
Long
insuranceTypeId
;
/**
* 商险购买地省code
*/
@JsonIgnore
private
Integer
insuranceProvince
;
/**
* 商险购买地市code
*/
@JsonIgnore
private
Integer
insuranceCity
;
/**
* 商险办理省code
*/
@JsonIgnore
private
Integer
insuranceHandleProvince
;
/**
* 商险办理城市code
*/
@JsonIgnore
private
Integer
insuranceHandleCity
;
/**
* 保单开始时间
*/
@JsonIgnore
private
LocalDate
policyStart
;
/**
* 保单结束时间
*/
@JsonIgnore
private
LocalDate
policyEnd
;
}
yifu-insurances/yifu-insurances-api/src/main/java/com/yifu/cloud/plus/v1/yifu/insurances/vo/InsuranceEditParam.java
View file @
95588c6d
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
insurances
.
vo
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
...
...
@@ -142,14 +143,17 @@ public class InsuranceEditParam implements Serializable {
/**
* 医疗额度
*/
@JsonIgnore
private
String
medicalQuota
;
/**
* 身故或残疾额度
*/
@JsonIgnore
private
String
dieDisableQuota
;
/**
* 险种主键
*/
@JsonIgnore
private
Long
insuranceTypeId
;
}
yifu-insurances/yifu-insurances-biz/src/main/resources/mapper/TInsuranceDetailMapper.xml
View file @
95588c6d
...
...
@@ -36,7 +36,6 @@
<result
property=
"settleType"
column=
"SETTLE_TYPE"
jdbcType=
"TINYINT"
/>
<result
property=
"actualPremium"
column=
"ACTUAL_PREMIUM"
jdbcType=
"DECIMAL"
/>
<result
property=
"estimatePremium"
column=
"ESTIMATE_PREMIUM"
jdbcType=
"DECIMAL"
/>
<result
property=
"settleBalance"
column=
"SETTLE_BALANCE"
jdbcType=
"DECIMAL"
/>
<result
property=
"buyHandleStatus"
column=
"BUY_HANDLE_STATUS"
jdbcType=
"TINYINT"
/>
<result
property=
"defaultSettleId"
column=
"DEFAULT_SETTLE_ID"
jdbcType=
"VARCHAR"
/>
<result
property=
"reduceHandleStatus"
column=
"REDUCE_HANDLE_STATUS"
jdbcType=
"TINYINT"
/>
...
...
@@ -60,7 +59,7 @@
BATCH_DATE,SETTLE_MONTH,INVOICE_NO,
BUY_TYPE,INSURANCE_PROVINCE,INSURANCE_PROVINCE_NAME,INSURANCE_CITY,INSURANCE_CITY_NAME,
INSURANCE_HANDLE_PROVINCE,INSURANCE_HANDLE_PROVINCE_NAME,INSURANCE_HANDLE_CITY,INSURANCE_HANDLE_CITY_NAME,SETTLE_TYPE,
ACTUAL_PREMIUM,ESTIMATE_PREMIUM,
SETTLE_BALANCE,
ACTUAL_PREMIUM,ESTIMATE_PREMIUM,
BUY_HANDLE_STATUS,DEFAULT_SETTLE_ID,REDUCE_HANDLE_STATUS,
IS_USE,IS_EFFECT,IS_OVERDUE,REMARK,
CREATE_BY,CREATE_NAME,CREATE_TIME,
...
...
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