Merge remote-tracking branch 'origin/master'
| | |
| | | |
| | | @Override |
| | | public R delUserSite(Long userId) { |
| | | return R.fail("删除用户站点失败:" + throwable.getMessage()); |
| | | throw new RuntimeException("删除用户站点失败:" + throwable.getMessage()); |
| | | } |
| | | }; |
| | | } |
| | |
| | | BCryptPasswordEncoder passwordEncoder = new BCryptPasswordEncoder(); |
| | | return passwordEncoder.matches(rawPassword, encodedPassword); |
| | | } |
| | | |
| | | |
| | | public static void main(String[] args) { |
| | | BCryptPasswordEncoder passwordEncoder = new BCryptPasswordEncoder(); |
| | | String encode = passwordEncoder.encode("49a15811ea47e8e9c6d8f3ef4d7bbc54"); |
| | | System.err.println(encode); |
| | | } |
| | | } |
New file |
| | |
| | | package com.ruoyi.system.query; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @date 2024/8/21 20:24 |
| | | */ |
| | | @Data |
| | | @ApiModel |
| | | public class ShopUserStart { |
| | | @ApiModelProperty("用户id") |
| | | private Long userId; |
| | | @ApiModelProperty("注释") |
| | | private String remark; |
| | | } |