3 changed files with 42 additions and 0 deletions
@ -0,0 +1,19 @@ |
|||
package com.elink.esua.epdc.controller; |
|||
|
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
/** |
|||
* 工作端,用户登录,用户管理相关接口 |
|||
* |
|||
* @author work@yujt.net.cn |
|||
* @date 2019/11/18 10:45 |
|||
*/ |
|||
@RestController |
|||
@RequestMapping("work/user") |
|||
public class ApiWorkUserController { |
|||
|
|||
|
|||
|
|||
|
|||
} |
|||
@ -0,0 +1,10 @@ |
|||
package com.elink.esua.epdc.service; |
|||
|
|||
/** |
|||
* 工作端,用户登录、用户管理 相关业务接口 |
|||
* |
|||
* @author work@yujt.net.cn |
|||
* @date 2019/11/18 10:48 |
|||
*/ |
|||
public interface WorkUserService { |
|||
} |
|||
@ -0,0 +1,13 @@ |
|||
package com.elink.esua.epdc.service.impl; |
|||
|
|||
import org.springframework.stereotype.Service; |
|||
|
|||
/** |
|||
* 工作端,用户登录、用户管理 相关业务实现 |
|||
* |
|||
* @author work@yujt.net.cn |
|||
* @date 2019/11/18 10:49 |
|||
*/ |
|||
@Service |
|||
public class WorkUserServiceImpl { |
|||
} |
|||
Loading…
Reference in new issue