3 changed files with 46 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||
package com.epmet.controller; |
|||
|
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
/** |
|||
* @Description 政府端-基层治理-议题管理 |
|||
* @Author yinzuomei |
|||
* @Date 2020/5/11 9:06 |
|||
*/ |
|||
@RestController |
|||
@RequestMapping("manage") |
|||
public class IssueManageController { |
|||
} |
|||
|
@ -0,0 +1,15 @@ |
|||
package com.epmet.controller; |
|||
|
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
/** |
|||
* @Description 政府端-项目跟踪 |
|||
* @Author yinzuomei |
|||
* @Date 2020/5/11 9:07 |
|||
*/ |
|||
@RestController |
|||
@RequestMapping("trace") |
|||
public class ProjectTraceController { |
|||
} |
|||
|
@ -0,0 +1,16 @@ |
|||
package com.epmet.controller; |
|||
|
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
/** |
|||
* @Description 居民端党群议事 |
|||
* @Author yinzuomei |
|||
* @Date 2020/5/11 9:04 |
|||
*/ |
|||
@RestController |
|||
@RequestMapping("issue") |
|||
public class IssueController { |
|||
|
|||
} |
|||
|
Loading…
Reference in new issue