YiDunServiceImpl.java
1.45 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
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;
}
}