Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-csf
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xingmin
yd-csf
Commits
58d0380b
Commit
58d0380b
authored
May 14, 2026
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
push
parent
232e01d6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
4 deletions
+27
-4
yd-csf-service/src/main/java/com/yd/csf/service/model/Commission.java
+8
-0
yd-csf-service/src/main/java/com/yd/csf/service/model/CommissionExpected.java
+15
-4
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/CommissionExpectedServiceImpl.java
+4
-0
No files found.
yd-csf-service/src/main/java/com/yd/csf/service/model/Commission.java
View file @
58d0380b
...
...
@@ -165,11 +165,19 @@ public class Commission implements Serializable {
/**
* 创建人ID
*/
@TableField
(
value
=
"creator_id"
,
fill
=
FieldFill
.
INSERT
)
private
String
creatorId
;
/**
* 创建人名称
*/
@TableField
(
value
=
"creator_name"
,
fill
=
FieldFill
.
INSERT
)
private
String
creatorName
;
/**
* 更新人ID
*/
@TableField
(
value
=
"updater_id"
,
fill
=
FieldFill
.
INSERT_UPDATE
)
private
String
updaterId
;
/**
...
...
yd-csf-service/src/main/java/com/yd/csf/service/model/CommissionExpected.java
View file @
58d0380b
package
com
.
yd
.
csf
.
service
.
model
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.baomidou.mybatisplus.annotation.*
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
...
...
@@ -178,14 +175,28 @@ public class CommissionExpected implements Serializable {
/**
* 创建人ID
*/
@TableField
(
value
=
"creator_id"
,
fill
=
FieldFill
.
INSERT
)
private
String
creatorId
;
/**
* 创建人名称
*/
@TableField
(
value
=
"creator_name"
,
fill
=
FieldFill
.
INSERT
)
private
String
creatorName
;
/**
* 更新人ID
*/
@TableField
(
value
=
"updater_id"
,
fill
=
FieldFill
.
INSERT_UPDATE
)
private
String
updaterId
;
/**
* 更新人名称
*/
@TableField
(
value
=
"updater_name"
,
fill
=
FieldFill
.
INSERT_UPDATE
)
private
String
updaterName
;
/**
* 创建时间
*/
private
Date
createTime
;
...
...
yd-csf-service/src/main/java/com/yd/csf/service/service/impl/CommissionExpectedServiceImpl.java
View file @
58d0380b
...
...
@@ -263,6 +263,8 @@ public class CommissionExpectedServiceImpl extends ServiceImpl<CommissionExpecte
vo
.
setCurrency
(
expected
.
getCurrency
());
vo
.
setCommissionType
(
expected
.
getCommissionType
());
vo
.
setAmount
(
expected
.
getAmount
());
vo
.
setRealUpdaterName
(
expected
.
getUpdaterName
());
vo
.
setRealUpdateTime
(
expected
.
getUpdateTime
());
// 填充保单信息
Policy
policy
=
policyMap
.
get
(
expected
.
getPolicyNo
());
...
...
@@ -369,6 +371,8 @@ public class CommissionExpectedServiceImpl extends ServiceImpl<CommissionExpecte
vo
.
setRemark
(
commission
.
getRemark
());
vo
.
setManualRemark
(
commission
.
getManualRemark
());
vo
.
setStatusDesc
(
commission
.
getStatusDesc
());
vo
.
setRealUpdateTime
(
commission
.
getUpdateTime
());
vo
.
setRealUpdaterName
(
commission
.
getUpdaterName
());
// 覆盖公共业务字段
// vo.setAmount(commission.getAmount());
...
...
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