Commit fe393af7 by huluobin

逗号分隔

parent bd432ab2
......@@ -216,7 +216,7 @@ public class OrderManageServiceImpl extends ServiceImpl<OrderManageMapper, Order
new LambdaQueryWrapper<StoreTechnician>().in(StoreTechnician::getId, Lists.newArrayList(orderServeParam.getTechnicianId().split(",")))
);
builder.technicianId(orderServeParam.getTechnicianId())
.technicianName(storeTechnicianList.stream().map(StoreTechnician::getName).collect(Collectors.joining()))
.technicianName(storeTechnicianList.stream().map(StoreTechnician::getName).collect(Collectors.joining(",")))
.commentStatus(1)
.remark(orderServeParam.getRemark());
......@@ -326,7 +326,7 @@ public class OrderManageServiceImpl extends ServiceImpl<OrderManageMapper, Order
//美甲师id
orderServe.setTechnicianId(orderServeParam.getTechnicianId());
//美甲师姓名
orderServe.setTechnicianName(storeTechnicianList.stream().map(StoreTechnician::getName).collect(Collectors.joining()));
orderServe.setTechnicianName(storeTechnicianList.stream().map(StoreTechnician::getName).collect(Collectors.joining(",")));
//订单服务评论状态
orderServe.setCommentStatus(orderServeParam.getCommentStatus());
//订单服务备注
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment