FeeDiscountRuleSpecServiceDaoImpl.java 3.3 KB
package com.java110.fee.dao.impl;

import com.alibaba.fastjson.JSONObject;
import com.java110.utils.constant.ResponseConstant;
import com.java110.utils.exception.DAOException;
import com.java110.utils.util.DateUtil;
import com.java110.core.base.dao.BaseServiceDao;
import com.java110.fee.dao.IFeeDiscountRuleSpecServiceDao;
import org.slf4j.Logger;
import com.java110.core.log.LoggerFactory;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

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

/**
 * 折扣规则配置服务 与数据库交互
 * Created by wuxw on 2017/4/5.
 */
@Service("feeDiscountRuleSpecServiceDaoImpl")
//@Transactional
public class FeeDiscountRuleSpecServiceDaoImpl extends BaseServiceDao implements IFeeDiscountRuleSpecServiceDao {

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





    /**
     * 保存折扣规则配置信息 到 instance
     * @param info   bId 信息
     * @throws DAOException DAO异常
     */
    @Override
    public void saveFeeDiscountRuleSpecInfo(Map info) throws DAOException {
        logger.debug("保存折扣规则配置信息Instance 入参 info : {}",info);

        int saveFlag = sqlSessionTemplate.insert("feeDiscountRuleSpecServiceDaoImpl.saveFeeDiscountRuleSpecInfo",info);

        if(saveFlag < 1){
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR,"保存折扣规则配置信息Instance数据失败:"+ JSONObject.toJSONString(info));
        }
    }


    /**
     * 查询折扣规则配置信息(instance)
     * @param info bId 信息
     * @return List<Map>
     * @throws DAOException DAO异常
     */
    @Override
    public List<Map> getFeeDiscountRuleSpecInfo(Map info) throws DAOException {
        logger.debug("查询折扣规则配置信息 入参 info : {}",info);

        List<Map> businessFeeDiscountRuleSpecInfos = sqlSessionTemplate.selectList("feeDiscountRuleSpecServiceDaoImpl.getFeeDiscountRuleSpecInfo",info);

        return businessFeeDiscountRuleSpecInfos;
    }


    /**
     * 修改折扣规则配置信息
     * @param info 修改信息
     * @throws DAOException DAO异常
     */
    @Override
    public void updateFeeDiscountRuleSpecInfo(Map info) throws DAOException {
        logger.debug("修改折扣规则配置信息Instance 入参 info : {}",info);

        int saveFlag = sqlSessionTemplate.update("feeDiscountRuleSpecServiceDaoImpl.updateFeeDiscountRuleSpecInfo",info);

        if(saveFlag < 1){
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR,"修改折扣规则配置信息Instance数据失败:"+ JSONObject.toJSONString(info));
        }
    }

     /**
     * 查询折扣规则配置数量
     * @param info 折扣规则配置信息
     * @return 折扣规则配置数量
     */
    @Override
    public int queryFeeDiscountRuleSpecsCount(Map info) {
        logger.debug("查询折扣规则配置数据 入参 info : {}",info);

        List<Map> businessFeeDiscountRuleSpecInfos = sqlSessionTemplate.selectList("feeDiscountRuleSpecServiceDaoImpl.queryFeeDiscountRuleSpecsCount", info);
        if (businessFeeDiscountRuleSpecInfos.size() < 1) {
            return 0;
        }

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


}