YiDunServiceImpl.java 1.45 KB
package com.cnlive.shenhe.service.serviceImpl;

import com.alibaba.fastjson.JSON;
import com.cnlive.shenhe.entity.ShyYidun;
import com.cnlive.shenhe.mapper.ShyYidunMapper;
import com.cnlive.shenhe.service.YiDunService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

/**
 * @Author: xujincheng
 * @Date: 2020/3/27 17:31
 */
@Service
public class YiDunServiceImpl implements YiDunService {

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

    @Autowired
    ShyYidunMapper shyYidunMapper;

    /**
     * 添加易盾记录
     *
     * @param shyYidun
     * @return
     */
    @Override
    public boolean addYiDunMsg(ShyYidun shyYidun) {
        logger.info("URL:{}", JSON.toJSONString(shyYidun.getUrl()));
        int result = shyYidunMapper.insert(shyYidun);
        return result != 0;
    }

    /**
     * 根据主键id查询易盾对象
     *
     * @param dataId
     * @return
     */
    @Override
    public ShyYidun getYiDunMsg(String dataId) {
        return shyYidunMapper.selectByPrimaryKey(dataId);
    }

    /**
     * 根据主键修改易盾对象 返回布尔类型
     *
     * @param shyYidun
     * @return
     */
    @Override
    public boolean updateYiDunMsg(ShyYidun shyYidun) {
        int result = shyYidunMapper.updateByPrimaryKeySelective(shyYidun);
        return result != 0;
    }
}