feat:装修阶段调整

This commit is contained in:
苏竹红
2024-10-10 15:04:32 +08:00
parent b361756338
commit 189a75351a
2 changed files with 4 additions and 4 deletions

View File

@@ -15,9 +15,9 @@ public class ConstructionRequest {
private Long shopId;
@ApiModelProperty("装修计划开始时间")
private Long planStartTime;
private Long constructionPlanStartTime;
@ApiModelProperty("装修计划结束时间")
private Long planEndTime;
private Long constructionPlanEndTime;
@ApiModelProperty("装修附件")
private String constructionAnnex;
@ApiModelProperty("装修备注")

View File

@@ -587,8 +587,8 @@ public class DecorationServiceImpl implements DecorationService {
DecorationDesignInfoDO decoration = decorationDesignInfoDAO.getByShopId(request.getShopId());
decoration.setConstructionAnnex(request.getConstructionAnnex());
decoration.setConstructionRemark(request.getConstructionRemark());
decoration.setConstructionPlanStartTime(new Date(request.getPlanStartTime()));
decoration.setConstructionPlanEndTime(new Date(request.getPlanEndTime()));
decoration.setConstructionPlanStartTime(new Date(request.getConstructionPlanStartTime()));
decoration.setConstructionPlanEndTime(new Date(request.getConstructionPlanEndTime()));
decoration.setConstructionCreateTime(new Date());
decoration.setConstructionCreateUser(user.getUserId());
decorationDesignInfoDAO.updateByPrimaryKeySelective(decoration);