3 changed files with 45 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||
package com.epmet.modules.group.controller; |
|||
|
|||
import com.epmet.modules.group.service.GroupIssueService; |
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
/** |
|||
* @author zhaoqifeng |
|||
* @dscription |
|||
* @date 2020/11/17 10:15 |
|||
*/ |
|||
@Slf4j |
|||
@RestController |
|||
@RequestMapping("groupissue") |
|||
public class GroupIssueController { |
|||
@Autowired |
|||
private GroupIssueService groupIssueService; |
|||
|
|||
} |
@ -0,0 +1,9 @@ |
|||
package com.epmet.modules.group.service; |
|||
|
|||
/** |
|||
* @author zhaoqifeng |
|||
* @dscription |
|||
* @date 2020/11/17 10:16 |
|||
*/ |
|||
public interface GroupIssueService { |
|||
} |
@ -0,0 +1,15 @@ |
|||
package com.epmet.modules.group.service.impl; |
|||
|
|||
import com.epmet.modules.group.service.GroupIssueService; |
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.springframework.stereotype.Service; |
|||
|
|||
/** |
|||
* @author zhaoqifeng |
|||
* @dscription |
|||
* @date 2020/11/17 10:16 |
|||
*/ |
|||
@Slf4j |
|||
@Service |
|||
public class GroupIssueServiceImpl implements GroupIssueService { |
|||
} |
Loading…
Reference in new issue