Package com.eatle.persistent.pojo.foundation.place

Examples of com.eatle.persistent.pojo.foundation.place.Community


      List<Community> communityList)
  {
    Map<Long, List<Community>> communityMap = new HashMap<Long, List<Community>>();
    for (int i = 0; i < communityList.size(); i++)
    {
      Community community = communityList.get(i);
      Long distinctId = community.getDistrictId();
      Long key = distinctId;
      if (distinctId == null || distinctId == 0)
      {
        key = 0L;
      }
View Full Code Here


      json.put(DwzAjaxJsonUtil.KEY_STATUSCODE, 300);
      json.put(DwzAjaxJsonUtil.KEY_MESSAGE, "操作失败!");
    }
    else
    {
      Community c = communityService.findById(community.getId());
      ReflectionUtils.copyPorperties(c, community, new String[] { "name",
          "pinyinName", "districtId" });
      communityService.update(c);
    }
    super.writeMap(json);
View Full Code Here

TOP

Related Classes of com.eatle.persistent.pojo.foundation.place.Community

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.