@Action("getAssigns")
 public String getAssigns() throws BizException {
   Function fun = bcFunctionService.getFunctionByCode(functionCode);
   List<FunctionView> list =
       functionViewAssignService.getFunctionViews(
           getOnlineUser().getUser().getId(),
           fun.getId(),
           getOnlineUser().getLoginedOrg().getId(),
           bizTypeId);
   String json = FastJsonUtils.toJson(list, new String[] {"id", "viewcode", "viewname"});
   setJsonString(json);
   return SUCCESS;
 }