3 changed files with 33 additions and 0 deletions
@ -0,0 +1,13 @@ |
|||||
|
package com.epmet.controller; |
||||
|
|
||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
import org.springframework.web.bind.annotation.RestController; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/8/13 9:16 上午 |
||||
|
*/ |
||||
|
@RestController |
||||
|
@RequestMapping("staff") |
||||
|
public class OpenUpController { |
||||
|
} |
@ -0,0 +1,8 @@ |
|||||
|
package com.epmet.service; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/8/13 9:17 上午 |
||||
|
*/ |
||||
|
public interface OpenUpService { |
||||
|
} |
@ -0,0 +1,12 @@ |
|||||
|
package com.epmet.service.impl; |
||||
|
|
||||
|
import com.epmet.service.OpenUpService; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/8/13 9:18 上午 |
||||
|
*/ |
||||
|
@Service |
||||
|
public class OpenUpServiceImpl implements OpenUpService { |
||||
|
} |
Loading…
Reference in new issue