This commit is contained in:
筱锋xiao_lfeng 2023-12-20 20:33:34 +08:00
parent fb1b9ae8d7
commit b14d21cb58
Signed by: XiaoLFeng
GPG Key ID: F693AA12AABBFA87
3 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package com.jsl.oa.controllers;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class UserController {
}

View File

@ -0,0 +1,4 @@
package com.jsl.oa.services;
public interface UserService {
}

View File

@ -0,0 +1,7 @@
package com.jsl.oa.services;
import org.springframework.stereotype.Service;
@Service
public class UserServiceImpl implements UserService {
}