| | |
| | | public R<Void> transferPoint(@ApiParam("积分") BigDecimal point, @ApiParam("手机号") Long phone) { |
| | | AppUser appUser = appUserService.getOne(new LambdaQueryWrapper<AppUser>() |
| | | .eq(AppUser::getPhone, phone)); |
| | | |
| | | |
| | | |
| | | if (null == appUser) { |
| | | return R.fail("用户不存在"); |
| | | } |
| | |
| | | @ApiModel(value="技师预约对象", description="") |
| | | public class TechnicianSubscribeVO { |
| | | |
| | | @ApiModelProperty(value = "预约id") |
| | | private Long id; |
| | | |
| | | /** |
| | | * 门店名称 |
| | | */ |
| | |
| | | <select id="getTechnicianSubscribeByUser" resultType="com.ruoyi.other.vo.TechnicianSubscribeVO"> |
| | | SELECT * from ( |
| | | SELECT |
| | | tts.id, |
| | | tts.user_address, |
| | | ts.`name` shopName, |
| | | ts.address shopAddress, |