Exemple #1
0
  /**
   * hkf 用partyid查询admin操作员信息 2013.7.11
   *
   * @return
   */
  @GET
  public String selectMsgByPartyid() {
    Map paramsMap = new HashMap();
    HttpServletRequest request = this.getResponseHelper().getRequest();
    SessionBean sessionBean = SessionUtil.getSession(request);

    paramsMap.put("partyid", sessionBean.getPartyid());
    OperatorService operatorService =
        (OperatorService) SofaSpringContext.getBean("operatorService");
    String str = operatorService.selectAdminMsgByPartyid(paramsMap);

    HttpServletResponse response = this.getResponseHelper().getResponse();

    return new JsonResponse().responseJson(response, str);
  }