删除/移动auth相关内容

This commit is contained in:
高子兴 2024-07-05 17:04:51 +08:00
parent 7a6d2b5c4b
commit 76ca17cf41
4 changed files with 6 additions and 6 deletions

View File

@ -3,7 +3,7 @@ package org.cmh.backend.UserManagement.controller;
import jakarta.transaction.Transactional;
import org.cmh.backend.UserManagement.model.Tenant;
import org.cmh.backend.UserManagement.service.TenantManagementService;
import org.cmh.backend.authentication.model.User;
import org.cmh.backend.UserManagement.model.User;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.List;

View File

@ -1,7 +1,7 @@
package org.cmh.backend.authentication.controller;
package org.cmh.backend.UserManagement.controller;
import org.cmh.backend.UserManagement.model.User;
import org.cmh.backend.authentication.service.UserService;
import org.cmh.backend.UserManagement.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;

View File

@ -1,4 +1,4 @@
package org.cmh.backend.authentication.repository;
package org.cmh.backend.UserManagement.repository;
import org.cmh.backend.UserManagement.model.User;
import org.springframework.data.jpa.repository.JpaRepository;

View File

@ -1,7 +1,7 @@
package org.cmh.backend.authentication.service;
package org.cmh.backend.UserManagement.service;
import org.cmh.backend.UserManagement.model.User;
import org.cmh.backend.authentication.repository.UserRepository;
import org.cmh.backend.UserManagement.repository.UserRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;