mybatis-jpa-extra-3.3.2 service and impl

This commit is contained in:
shimingxy
2024-11-19 11:12:42 +08:00
parent 8c50c6e225
commit f2bc5e37ae
45 changed files with 98 additions and 86 deletions

View File

@@ -25,7 +25,6 @@ import org.dromara.mybatis.jpa.entity.JpaPageResults;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.DeleteMapping;
@@ -48,7 +47,6 @@ public class RestUserInfoController {
static final Logger _logger = LoggerFactory.getLogger(RestUserInfoController.class);
@Autowired
@Qualifier("userInfoService")
UserInfoService userInfoService;
@GetMapping(value = "/{id}")

View File

@@ -25,7 +25,6 @@ import org.dromara.maxkey.persistence.service.UserInfoService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -40,7 +39,6 @@ public class RestUserPasswordController {
static final Logger _logger = LoggerFactory.getLogger(RestUserPasswordController.class);
@Autowired
@Qualifier("userInfoService")
UserInfoService userInfoService;