old mode 100644
new mode 100755
| | |
| | | import com.java110.dto.community.CommunityAttrDto; |
| | | import com.java110.dto.community.CommunityDto; |
| | | import com.java110.intf.community.ICommunityInnerServiceSMO; |
| | | import com.java110.po.community.CommunityAttrPo; |
| | | import com.java110.po.community.CommunityPo; |
| | | import com.java110.utils.util.BeanConvertUtil; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import com.java110.core.log.LoggerFactory; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | |
| | | return communityServiceDaoImpl.getCommunityAttrsCount(BeanConvertUtil.beanCovertMap(communityAttrDto)); |
| | | } |
| | | |
| | | /** |
| | | * 保存小区属性 |
| | | * @param communityAttrPo 数据对象分享 |
| | | * @return |
| | | */ |
| | | @Override |
| | | public int saveCommunityAttr(CommunityAttrPo communityAttrPo) { |
| | | return communityServiceDaoImpl.saveCommunityAttr(BeanConvertUtil.beanCovertMap(communityAttrPo)); |
| | | } |
| | | |
| | | @Override |
| | | public List<CommunityDto> queryCommunitys(@RequestBody CommunityDto communityDto) { |
| | | |