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
b098f3da
Commit
b098f3da
authored
Jan 06, 2026
by
zhangxingmin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
push
parent
e9119fda
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
yd-csf-api/src/main/java/com/yd/csf/api/service/impl/ApiAppointmentServiceImpl.java
+1
-1
yd-csf-api/src/main/java/com/yd/csf/api/service/impl/ApiProductPlanServiceImpl.java
+3
-0
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiProductPlanMainInfoDto.java
+1
-1
No files found.
yd-csf-api/src/main/java/com/yd/csf/api/service/impl/ApiAppointmentServiceImpl.java
View file @
b098f3da
...
@@ -673,7 +673,7 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
...
@@ -673,7 +673,7 @@ public class ApiAppointmentServiceImpl implements ApiAppointmentService {
}
}
}
}
//产品名称
//产品名称
follow
.
setProductName
(
apiProductPlanMainInfoDto
.
getProductLaunchName
());
follow
.
setProductName
(
apiProductPlanMainInfoDto
.
getProductLaunch
Main
Name
());
//签单员列表
//签单员列表
setSignerList
(
follow
,
appointment
);
setSignerList
(
follow
,
appointment
);
}
}
...
...
yd-csf-api/src/main/java/com/yd/csf/api/service/impl/ApiProductPlanServiceImpl.java
View file @
b098f3da
...
@@ -69,6 +69,7 @@ public class ApiProductPlanServiceImpl implements ApiProductPlanService {
...
@@ -69,6 +69,7 @@ public class ApiProductPlanServiceImpl implements ApiProductPlanService {
if
(!
Objects
.
isNull
(
productPlan
))
{
if
(!
Objects
.
isNull
(
productPlan
))
{
dto
=
new
ApiProductPlanMainInfoDto
();
dto
=
new
ApiProductPlanMainInfoDto
();
BeanUtils
.
copyProperties
(
productPlan
,
dto
);
BeanUtils
.
copyProperties
(
productPlan
,
dto
);
dto
.
setProductLaunchMainName
(
productPlan
.
getProductLaunchName
());
}
}
return
Result
.
success
(
dto
);
return
Result
.
success
(
dto
);
}
}
...
@@ -131,6 +132,7 @@ public class ApiProductPlanServiceImpl implements ApiProductPlanService {
...
@@ -131,6 +132,7 @@ public class ApiProductPlanServiceImpl implements ApiProductPlanService {
productPlan
.
setPlanBizId
(
RandomStringGenerator
.
generateBizId16
(
CommonEnum
.
UID_TYPE_PRODUCT_PLAN
.
getCode
()));
productPlan
.
setPlanBizId
(
RandomStringGenerator
.
generateBizId16
(
CommonEnum
.
UID_TYPE_PRODUCT_PLAN
.
getCode
()));
//预约信息主表唯一业务ID
//预约信息主表唯一业务ID
productPlan
.
setAppointmentBizId
(
appointmentBizId
);
productPlan
.
setAppointmentBizId
(
appointmentBizId
);
productPlan
.
setProductLaunchName
(
dto
.
getProductLaunchMainName
());
iProductPlanService
.
saveOrUpdate
(
productPlan
);
iProductPlanService
.
saveOrUpdate
(
productPlan
);
return
Result
.
success
(
productPlan
);
return
Result
.
success
(
productPlan
);
}
}
...
@@ -161,6 +163,7 @@ public class ApiProductPlanServiceImpl implements ApiProductPlanService {
...
@@ -161,6 +163,7 @@ public class ApiProductPlanServiceImpl implements ApiProductPlanService {
BeanUtils
.
copyProperties
(
dto
,
productPlan
);
BeanUtils
.
copyProperties
(
dto
,
productPlan
);
//预约信息主表唯一业务ID
//预约信息主表唯一业务ID
productPlan
.
setAppointmentBizId
(
appointmentBizId
);
productPlan
.
setAppointmentBizId
(
appointmentBizId
);
productPlan
.
setProductLaunchName
(
dto
.
getProductLaunchMainName
());
iProductPlanService
.
saveOrUpdate
(
productPlan
);
iProductPlanService
.
saveOrUpdate
(
productPlan
);
return
Result
.
success
(
productPlan
);
return
Result
.
success
(
productPlan
);
}
}
...
...
yd-csf-feign/src/main/java/com/yd/csf/feign/dto/appointment/ApiProductPlanMainInfoDto.java
View file @
b098f3da
...
@@ -45,7 +45,7 @@ public class ApiProductPlanMainInfoDto {
...
@@ -45,7 +45,7 @@ public class ApiProductPlanMainInfoDto {
* 产品上架信息表名称(标题)
* 产品上架信息表名称(标题)
*/
*/
@NotBlank
(
message
=
"产品计划-基本计划-产品名称不能为空"
)
@NotBlank
(
message
=
"产品计划-基本计划-产品名称不能为空"
)
private
String
productLaunchName
;
private
String
productLaunch
Main
Name
;
/**
/**
* 供款期数
* 供款期数
...
...
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