Compare commits

..

No commits in common. "8cc065e5983db6656d665b7cdac0874a2287c6cc" and "b9f05915785e612ada461f881095217090028115" have entirely different histories.

2 changed files with 6 additions and 16 deletions

View File

@ -53,26 +53,18 @@ public class LitemallReservationRespVO {
@DictFormat("status") // TODO 代码优化建议设置到对应的 DictTypeConstants 枚举类中
private Integer status;
private String technicianName;
@Schema(description = "备注", example = "随便")
@ExcelProperty("备注")
private String remark;
@Schema(description = "创建时间")
@ExcelProperty("创建时间")
private LocalDateTime createTime;
@ExcelProperty("门店")
private String brandName;
@ExcelProperty("用户名称")
private String nickname;
//电话
private String memberphone;
@ExcelProperty("门店")
private String brandName;
//门店地址
private String brandaddress;
@Schema(description = "备注", example = "随便")
@ExcelProperty("备注")
private String remark;
}

View File

@ -111,14 +111,12 @@ public class LitemallReservationServiceImpl implements LitemallReservationServic
LitemallBrandDO litemallBrandDO = litemallBrandMapper.selectOne("id", litemallReservationDO.getBrandId());
litemallReservationDO.setBrandName(litemallBrandDO.getName());
litemallReservationDO.setBrandaddress(litemallBrandDO.getAddress());
LitemallTechnicianDO litemallTechnicianDO = litemallTechnicianMapper.selectOne("id", litemallReservationDO.getTechnicianId());
litemallReservationDO.setTechnicianName(litemallTechnicianDO.getTechnicianName());
MemberUserDO memberUserDO = memberUserMapper.selectOne("id", litemallReservationDO.getUserId());
litemallReservationDO.setNickname(memberUserDO.getNickname());
litemallReservationDO.setMemberphone(memberUserDO.getMobile());
litemallReservationDO.setNickname(memberUserDO.getName());
}
return litemallReservationDOPageResult;