chore: 删除重复的文件
This commit is contained in:
parent
4a7487b1e3
commit
83e669b6b4
|
@ -2,7 +2,7 @@ package io.metersphere.system.controller;
|
|||
|
||||
|
||||
import io.metersphere.domain.User;
|
||||
import io.metersphere.system.service.UserService;
|
||||
import io.metersphere.sdk.UserService;
|
||||
import jakarta.annotation.Resource;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
package io.metersphere.system.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import io.metersphere.domain.User;
|
||||
import io.metersphere.sdk.mapper.UserMapper;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
@Service
|
||||
public class UserService extends ServiceImpl<UserMapper, User> {
|
||||
|
||||
}
|
|
@ -7,6 +7,7 @@ import org.springframework.boot.autoconfigure.ldap.LdapAutoConfiguration;
|
|||
import org.springframework.boot.autoconfigure.neo4j.Neo4jAutoConfiguration;
|
||||
import org.springframework.boot.autoconfigure.quartz.QuartzAutoConfiguration;
|
||||
import org.springframework.boot.web.servlet.ServletComponentScan;
|
||||
import org.springframework.context.annotation.ComponentScan;
|
||||
|
||||
@SpringBootApplication(exclude = {
|
||||
QuartzAutoConfiguration.class,
|
||||
|
@ -15,6 +16,7 @@ import org.springframework.boot.web.servlet.ServletComponentScan;
|
|||
MybatisAutoConfiguration.class
|
||||
})
|
||||
@ServletComponentScan
|
||||
@ComponentScan(basePackages = {"io.metersphere.sdk", "io.metersphere.system"})
|
||||
public class Application {
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
|
Loading…
Reference in New Issue