feat:装修阶段调整
This commit is contained in:
@@ -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("装修备注")
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user