2 changed files with 22 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||||
|
package cn.chjyj.szwh.controller.admin; |
||||
|
|
||||
|
import cn.chjyj.szwh.controller.BaseController; |
||||
|
import com.alibaba.fastjson.JSONObject; |
||||
|
import org.springframework.web.bind.annotation.PostMapping; |
||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
import org.springframework.web.bind.annotation.RestController; |
||||
|
|
||||
|
@RestController |
||||
|
@RequestMapping("/admin/user.User") |
||||
|
public class AdminUserController extends BaseController { |
||||
|
@PostMapping("/getUserFind") |
||||
|
public JSONObject getUserFind(){ |
||||
|
return jsonObject; |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue