| | |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestMethod; |
| | | import org.springframework.web.bind.annotation.ResponseBody; |
| | | |
| | | import com.northglass.service.TelecomsService.TelecomsService; |
| | | |
| | | import net.sf.json.JSONObject; |
| | | |
| | | @Controller |
| | |
| | | jsonObj.putAll(map); |
| | | return jsonObj; |
| | | } |
| | | |
| | | @RequestMapping(method=RequestMethod.GET, value="/paiText") |
| | | @ResponseBody |
| | | public JSONObject paiText(HttpServletRequest request,HttpServletResponse response){ |
| | | return TelecomsService.jsonObj; |
| | | } |
| | | } |
| | | |