用户实现类/用户服务接口(测试)

master
Eterlaze 8 months ago
parent ac1486a643
commit 0a6b4eb8d6

@ -0,0 +1,4 @@
package com.example.api.service;
public interface UserService {
}

@ -0,0 +1,9 @@
package com.example.api.service.impl;
import com.example.api.service.UserService;
import org.springframework.stereotype.Service;
@Service
public class UserServiceImpl implements UserService {
}
Loading…
Cancel
Save