YiDunServiceImpl.java
1.5 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
package com.cnlive.shenhe.serviceImpl;
import com.alibaba.fastjson.JSON;
import com.cnlive.shenhe.entity.ShyYidun;
import com.cnlive.shenhe.mapper.ShyYidunMapper;
import com.cnlive.shenhe.utils.CommonUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* @Author: xujincheng
* @Date: 2020/3/27 17:31
*/
@Service
public class YiDunServiceImpl {
private static Logger logger = LoggerFactory.getLogger(YiDunServiceImpl.class);
@Autowired
ShyYidunMapper shyYidunMapper;
public boolean addYiDunMsg(ShyYidun shyYidun) {
logger.info("URL:{}", JSON.toJSONString(shyYidun.getUrl()));
int result = shyYidunMapper.insert(shyYidun);
if (result == 0) {
return false;
}
return true;
}
public ShyYidun getidunMsgByContentId(ShyYidun shyYidun) {
List<ShyYidun> shyContentList = shyYidunMapper.select(shyYidun);
if (CommonUtils.isNotNull(shyContentList) && shyContentList.size() > 0) {
return shyContentList.get(0);
}
return null;
}
public ShyYidun getYiDunMsg(String dataId) {
return shyYidunMapper.selectByPrimaryKey(dataId);
}
public boolean updateYiDunMsg(ShyYidun shyYidun) {
int result = shyYidunMapper.updateByPrimaryKeySelective(shyYidun);
if (result == 0) {
return false;
}
return true;
}
}