CommunityServiceDaoImpl.java 17.3 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502
package com.java110.community.dao.impl;

import com.alibaba.fastjson.JSONObject;
import com.java110.community.dao.ICommunityServiceDao;
import com.java110.core.base.dao.BaseServiceDao;
import com.java110.utils.constant.ResponseConstant;
import com.java110.utils.exception.DAOException;
import com.java110.utils.util.DateUtil;
import org.slf4j.Logger;
import com.java110.core.log.LoggerFactory;
import org.springframework.stereotype.Service;

import java.util.List;
import java.util.Map;

/**
 * 项目服务 与数据库交互
 * Created by wuxw on 2017/4/5.
 */
@Service("communityServiceDaoImpl")
//@Transactional
public class CommunityServiceDaoImpl extends BaseServiceDao implements ICommunityServiceDao {

    private static Logger logger = LoggerFactory.getLogger(CommunityServiceDaoImpl.class);

    /**
     * 项目信息封装
     *
     * @param businessCommunityInfo 项目信息 封装
     * @throws DAOException
     */
    @Override
    public void saveBusinessCommunityInfo(Map businessCommunityInfo) throws DAOException {
        businessCommunityInfo.put("month", DateUtil.getCurrentMonth());
        // 查询business_user 数据是否已经存在
        logger.debug("保存项目信息 入参 businessCommunityInfo : {}", businessCommunityInfo);
        int saveFlag = sqlSessionTemplate.insert("communityServiceDaoImpl.saveBusinessCommunityInfo", businessCommunityInfo);

        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "保存项目数据失败:" + JSONObject.toJSONString(businessCommunityInfo));
        }
    }

    /**
     * 项目属性信息分装
     *
     * @param businessCommunityAttr 项目属性信息封装
     * @throws DAOException
     */
    @Override
    public void saveBusinessCommunityAttr(Map businessCommunityAttr) throws DAOException {
        businessCommunityAttr.put("month", DateUtil.getCurrentMonth());
        // 查询business_user 数据是否已经存在
        logger.debug("保存项目属性信息 入参 businessCommunityAttr : {}", businessCommunityAttr);

        int saveFlag = sqlSessionTemplate.insert("communityServiceDaoImpl.saveBusinessCommunityAttr", businessCommunityAttr);

        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "保存项目属性数据失败:" + JSONObject.toJSONString(businessCommunityAttr));
        }
    }

    /**
     * 保存项目照片信息
     *
     * @param businessCommunityPhoto 项目照片
     * @throws DAOException
     */
    @Override
    public void saveBusinessCommunityPhoto(Map businessCommunityPhoto) throws DAOException {
        businessCommunityPhoto.put("month", DateUtil.getCurrentMonth());
        logger.debug("保存项目照片信息 入参 businessCommunityPhoto : {}", businessCommunityPhoto);

        int saveFlag = sqlSessionTemplate.insert("communityServiceDaoImpl.saveBusinessCommunityPhoto", businessCommunityPhoto);

        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "保存项目照片数据失败:" + JSONObject.toJSONString(businessCommunityPhoto));
        }
    }

    /**
     * 保存项目证件信息
     *
     * @param businessCommunityCerdentials 项目证件
     * @throws DAOException
     */
    @Override
    public void saveBusinessCommunityCerdentials(Map businessCommunityCerdentials) throws DAOException {
        businessCommunityCerdentials.put("month", DateUtil.getCurrentMonth());
        logger.debug("保存项目证件信息 入参 businessCommunityCerdentials : {}", businessCommunityCerdentials);

        int saveFlag = sqlSessionTemplate.insert("communityServiceDaoImpl.saveBusinessCommunityCerdentials", businessCommunityCerdentials);

        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "保存项目证件数据失败:" + JSONObject.toJSONString(businessCommunityCerdentials));
        }
    }

    /**
     * 查询项目信息
     *
     * @param info bId 信息
     * @return 项目信息
     * @throws DAOException
     */
    @Override
    public Map getBusinessCommunityInfo(Map info) throws DAOException {

        logger.debug("查询项目信息 入参 info : {}", info);

        List<Map> infos = sqlSessionTemplate.selectList("communityServiceDaoImpl.getBusinessCommunityInfo", info);
        if (infos == null) {
            return null;
        }
        if (infos.size() > 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "根据条件查询有多条数据,数据异常,请检查:infos," + JSONObject.toJSONString(info));
        }

        return infos.get(0);
    }

    /**
     * 查询项目属性
     *
     * @param info bId 信息
     * @return 项目属性
     * @throws DAOException
     */
    @Override
    public List<Map> getBusinessCommunityAttrs(Map info) throws DAOException {
        logger.debug("查询项目属性信息 入参 info : {}", info);

        List<Map> businessCommunityAttrs = sqlSessionTemplate.selectList("communityServiceDaoImpl.getBusinessCommunityAttrs", info);

        return businessCommunityAttrs;
    }

    /**
     * 查询项目照片
     *
     * @param info bId 信息
     * @return
     * @throws DAOException
     */
    @Override
    public List<Map> getBusinessCommunityPhoto(Map info) throws DAOException {
        logger.debug("查询项目照片信息 入参 info : {}", info);

        List<Map> businessCommunityPhotos = sqlSessionTemplate.selectList("communityServiceDaoImpl.getBusinessCommunityPhoto", info);

        return businessCommunityPhotos;
    }

    /**
     * 查询项目证件
     *
     * @param info bId 信息
     * @return
     * @throws DAOException
     */
    @Override
    public List<Map> getBusinessCommunityCerdentials(Map info) throws DAOException {
        logger.debug("查询项目证件信息 入参 info : {}", info);

        List<Map> businessCommunityCerdentialses = sqlSessionTemplate.selectList("communityServiceDaoImpl.getBusinessCommunityCerdentials", info);

        return businessCommunityCerdentialses;
    }

    /**
     * 保存项目信息 到 instance
     *
     * @param info bId 信息
     * @throws DAOException
     */
    @Override
    public void saveCommunityInfoInstance(Map info) throws DAOException {
        logger.debug("保存项目信息Instance 入参 info : {}", info);

        int saveFlag = sqlSessionTemplate.insert("communityServiceDaoImpl.saveCommunityInfoInstance", info);

        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "保存项目信息Instance数据失败:" + JSONObject.toJSONString(info));
        }
    }

    @Override
    public void saveCommunityAttrsInstance(Map info) throws DAOException {
        logger.debug("保存项目属性信息Instance 入参 info : {}", info);

        int saveFlag = sqlSessionTemplate.insert("communityServiceDaoImpl.saveCommunityAttrsInstance", info);

        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "保存项目属性信息Instance数据失败:" + JSONObject.toJSONString(info));
        }
    }

    @Override
    public void saveCommunityPhotoInstance(Map info) throws DAOException {
        logger.debug("保存项目照片信息Instance 入参 info : {}", info);

        int saveFlag = sqlSessionTemplate.insert("communityServiceDaoImpl.saveCommunityPhotoInstance", info);

        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "保存项目照片信息Instance数据失败:" + JSONObject.toJSONString(info));
        }
    }


    /**
     * 查询项目信息(instance)
     *
     * @param info bId 信息
     * @return
     * @throws DAOException
     */
    @Override
    public Map getCommunityInfo(Map info) throws DAOException {
        logger.debug("查询项目信息 入参 info : {}", info);

        List<Map> infos = sqlSessionTemplate.selectList("communityServiceDaoImpl.getCommunityInfo", info);
        if (infos == null || infos.size() == 0) {
            return null;
        }
        if (infos.size() > 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "根据条件查询有多条数据,数据异常,请检查:getCommunityInfo," + JSONObject.toJSONString(info));
        }

        return infos.get(0);
    }

    /**
     * 项目属性查询(instance)
     *
     * @param info bId 信息
     * @return
     * @throws DAOException
     */
    @Override
    public List<Map> getCommunityAttrs(Map info) throws DAOException {
        logger.debug("查询项目属性信息 入参 info : {}", info);

        List<Map> communityAttrs = sqlSessionTemplate.selectList("communityServiceDaoImpl.getCommunityAttrs", info);

        return communityAttrs;
    }

    /**
     * 项目照片查询(instance)
     *
     * @param info bId 信息
     * @return
     * @throws DAOException
     */
    @Override
    public List<Map> getCommunityPhoto(Map info) throws DAOException {
        logger.debug("查询项目照片信息 入参 info : {}", info);

        List<Map> communityPhotos = sqlSessionTemplate.selectList("communityServiceDaoImpl.getCommunityPhoto", info);

        return communityPhotos;
    }


    /**
     * 修改项目信息
     *
     * @param info 修改信息
     * @throws DAOException
     */
    @Override
    public void updateCommunityInfoInstance(Map info) throws DAOException {
        logger.debug("修改项目信息Instance 入参 info : {}", info);

        int saveFlag = sqlSessionTemplate.update("communityServiceDaoImpl.updateCommunityInfoInstance", info);

        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "修改项目信息Instance数据失败:" + JSONObject.toJSONString(info));
        }
    }

    /**
     * 修改项目属性信息(instance)
     *
     * @param info 修改信息
     * @throws DAOException
     */
    @Override
    public void updateCommunityAttrInstance(Map info) throws DAOException {
        logger.debug("修改项目属性信息Instance 入参 info : {}", info);

        int saveFlag = sqlSessionTemplate.update("communityServiceDaoImpl.updateCommunityAttrInstance", info);

        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "修改项目属性信息Instance数据失败:" + JSONObject.toJSONString(info));
        }
    }

    /**
     * 修改 项目照片信息
     *
     * @param info 修改信息
     * @throws DAOException
     */
    @Override
    public void updateCommunityPhotoInstance(Map info) throws DAOException {
        logger.debug("修改项目照片信息Instance 入参 info : {}", info);

        int saveFlag = sqlSessionTemplate.update("communityServiceDaoImpl.updateCommunityPhotoInstance", info);

        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "修改项目照片信息Instance数据失败:" + JSONObject.toJSONString(info));
        }
    }


    /**
     * 项目成员加入信息
     *
     * @param businessCommunityMember 项目成员信息 封装
     * @throws DAOException 操作数据库异常
     */
    public void saveBusinessCommunityMember(Map businessCommunityMember) throws DAOException {
        logger.debug("项目成员加入 入参 businessCommunityMember : {}", businessCommunityMember);
        businessCommunityMember.put("month", DateUtil.getCurrentMonth());
        int saveFlag = sqlSessionTemplate.insert("communityServiceDaoImpl.saveBusinessCommunityMember", businessCommunityMember);

        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "项目成员加入失败:" + JSONObject.toJSONString(businessCommunityMember));
        }
    }

    /**
     * 成员加入 保存信息至instance
     *
     * @param info
     * @throws DAOException
     */
    @Override
    public void saveCommunityMemberInstance(Map info) throws DAOException {
        logger.debug("项目成员加入Instance 入参 info : {}", info);

        int saveFlag = sqlSessionTemplate.insert("communityServiceDaoImpl.saveCommunityMemberInstance", info);

        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "保存项目照片信息Instance数据失败:" + JSONObject.toJSONString(info));
        }
    }

    /**
     * 查询项目成员加入信息(business过程)
     * 根据bId 查询项目信息
     *
     * @param info bId 信息
     * @return 项目信息
     * @throws DAOException
     */
    public List<Map> getBusinessCommunityMember(Map info) throws DAOException {
        logger.debug("查询项目成员加入信息 入参 info : {}", info);

        List<Map> businessCommunityMembers = sqlSessionTemplate.selectList("communityServiceDaoImpl.getBusinessCommunityMember", info);
        if (businessCommunityMembers == null || businessCommunityMembers.size() == 0) {
            return null;
        }
//        if (businessCommunityMembers.size() > 1) {
//            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "根据条件查询有多条数据,数据异常,请检查:businessCommunityMember," + JSONObject.toJSONString(info));
//        }

        return businessCommunityMembers;
    }

    /**
     * 查询项目成员加入信息(instance过程)
     * 根据bId 查询项目信息
     *
     * @param info bId 信息
     * @return 项目信息
     * @throws DAOException
     */
    public List<Map> getCommunityMember(Map info) throws DAOException {
        logger.debug("查询项目成员加入信息 入参 info : {}", info);

        List<Map> memberCommunitys = sqlSessionTemplate.selectList("communityServiceDaoImpl.getCommunityMember", info);
        if (memberCommunitys == null || memberCommunitys.size() == 0) {
            return null;
        }
        if (memberCommunitys.size() > 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "根据条件查询有多条数据,数据异常,请检查:getCommunityMember," + JSONObject.toJSONString(info));
        }

        return memberCommunitys;
    }

    /**
     * 修改项目成员加入信息
     *
     * @param info 修改信息
     * @throws DAOException
     */
    public void updateCommunityMemberInstance(Map info) throws DAOException {
        logger.debug("修改项目成员加入信息Instance 入参 info : {}", info);

        int saveFlag = sqlSessionTemplate.update("communityServiceDaoImpl.updateCommunityMemberInstance", info);

        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "修改项目成员加入信息Instance数据失败:" + JSONObject.toJSONString(info));
        }
    }

    /**
     * @param info bId 信息
     * @return
     * @throws DAOException
     */
    @Override
    public List<Map> getCommunityMembers(Map info) throws DAOException {
        logger.debug("查询项目成员加入信息 入参 info : {}", info);

        List<Map> memberCommunitys = sqlSessionTemplate.selectList("communityServiceDaoImpl.getCommunityMember", info);

        return memberCommunitys;
    }

    @Override
    public int getCommunityMemberCount(Map info) {
        logger.debug("查询项目成员加入信息 入参 info : {}", info);

        List<Map> memberCommunitys = sqlSessionTemplate.selectList("communityServiceDaoImpl.getCommunityMemberCount", info);

        if (memberCommunitys.size() < 1) {
            return 0;
        }

        return Integer.parseInt(memberCommunitys.get(0).get("count").toString());
    }

    /**
     * 查询项目信息(instance)
     *
     * @param info bId 信息
     * @return List<Map>
     * @throws DAOException DAO异常
     */
    @Override
    public List<Map> getCommunityInfoNew(Map info) throws DAOException {
        logger.debug("查询项目信息 入参 info : {}", info);

        List<Map> infos = sqlSessionTemplate.selectList("communityServiceDaoImpl.getCommunityInfoNew", info);

        return infos;
    }

    /**
     * 查询项目数量
     *
     * @param info 项目信息
     * @return 项目数量
     */
    @Override
    public int queryCommunitysCount(Map info) {
        logger.debug("查询项目数据 入参 info : {}", info);

        List<Map> infos = sqlSessionTemplate.selectList("communityServiceDaoImpl.queryCommunitysCount", info);
        if (infos.size() < 1) {
            return 0;
        }

        return Integer.parseInt(infos.get(0).get("count").toString());
    }

    @Override
    public int getCommunityAttrsCount(Map info) {
        logger.debug("查询项目数据 入参 info : {}", info);

        List<Map> infos = sqlSessionTemplate.selectList("communityServiceDaoImpl.getCommunityAttrsCount", info);
        if (infos.size() < 1) {
            return 0;
        }

        return Integer.parseInt(infos.get(0).get("count").toString());
    }

    @Override
    public List<Map> getStoreCommunitys(Map info) {
        logger.debug("查询项目信息 入参 info : {}", info);

        List<Map> infos = sqlSessionTemplate.selectList("communityServiceDaoImpl.getStoreCommunitys", info);

        return infos;
    }

    @Override
    public int saveCommunityAttr(Map info) {
        logger.debug("项目成员加入Instance 入参 info : {}", info);

        int saveFlag = sqlSessionTemplate.insert("communityServiceDaoImpl.saveCommunityAttr", info);

        return saveFlag;
    }


}