forked from luyan/epmet-cloud-lingshan
3 changed files with 39 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||
package com.epmet.controller; |
|||
|
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
/** |
|||
* @Description 群众直报/报事controller |
|||
* @author wxz |
|||
* @date 2021.08.02 09:58:40 |
|||
*/ |
|||
@RestController |
|||
@RequestMapping("resi-event") |
|||
public class ResiEventController { |
|||
|
|||
|
|||
|
|||
} |
@ -0,0 +1,9 @@ |
|||
package com.epmet.service; |
|||
|
|||
/** |
|||
* @Description 报事service |
|||
* @author wxz |
|||
* @date 2021.08.02 09:59:16 |
|||
*/ |
|||
public interface ResiEventService { |
|||
} |
@ -0,0 +1,13 @@ |
|||
package com.epmet.service.impl; |
|||
|
|||
import com.epmet.service.ResiEventService; |
|||
import org.springframework.stereotype.Service; |
|||
|
|||
/** |
|||
* @Description 报事service |
|||
* @author wxz |
|||
* @date 2021.08.02 09:59:36 |
|||
*/ |
|||
@Service |
|||
public class ResiEventServiceImpl implements ResiEventService { |
|||
} |
Loading…
Reference in new issue