8 changed files with 47 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||
package com.epmet.controller; |
|||
|
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
@RestController |
|||
@RequestMapping("article") |
|||
public class ArticleController { |
|||
} |
@ -0,0 +1,9 @@ |
|||
package com.epmet.controller; |
|||
|
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
@RestController |
|||
@RequestMapping("draft") |
|||
public class DraftController { |
|||
} |
@ -0,0 +1,9 @@ |
|||
package com.epmet.controller; |
|||
|
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
@RestController |
|||
@RequestMapping("tag") |
|||
public class TagController { |
|||
} |
@ -0,0 +1,11 @@ |
|||
package com.epmet.controller; |
|||
|
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
@RestController |
|||
@RequestMapping("voice") |
|||
public class VoiceController { |
|||
//最新党建声音列表
|
|||
//首页轮播图列表
|
|||
} |
@ -0,0 +1,9 @@ |
|||
package com.epmet.controller; |
|||
|
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
@RestController |
|||
@RequestMapping("article") |
|||
public class ArticleController { |
|||
} |
Loading…
Reference in new issue