YiDunServiceImpl.java
1.04 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
package com.cnlive.shenhe.serviceImpl;
import com.cnlive.shenhe.entity.ShyYidun;
import com.cnlive.shenhe.mapper.ShyYidunMapper;
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 {
private static Logger logger = LoggerFactory.getLogger(YiDunServiceImpl.class);
@Autowired
ShyYidunMapper shyYidunMapper;
public boolean addYiDunMsg(ShyYidun shyYidun) {
int result = shyYidunMapper.insert(shyYidun);
if (result == 0) {
return false;
}
return true;
}
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;
}
}