修改车牌业务

This commit is contained in:
yuyang 2023-10-25 10:53:16 +08:00
parent eeaa426795
commit 970752890a

View File

@ -30,6 +30,7 @@ import org.bouncycastle.jce.provider.BouncyCastleProvider;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.env.Environment;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
@ -602,4 +603,8 @@ public class XhpcAppUserController extends BaseController {
public R addUserVehicle(@RequestBody XhpcUserVehicle xhpcUserVehicle){
return xhpcUserVehicleService.addUserVehicle(xhpcUserVehicle);
}
public static void main(String[] args) {
System.out.println(new BCryptPasswordEncoder().encode("Scxh123456!"));
}
}