NoticeServiceImpl.java
1.83 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package com.huaheng.pc.system.notice.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.huaheng.common.utils.security.ShiroUtils;
import com.huaheng.pc.system.notice.mapper.NoticeMapper;
import com.huaheng.pc.system.notice.domain.Notice;
import com.huaheng.common.support.Convert;
/**
* 公告 服务层实现
*
* @author huaheng
* @date 2018-06-25
*/
@Service
public class NoticeServiceImpl implements INoticeService
{
@Autowired
private NoticeMapper noticeMapper;
/**
* 查询公告信息
*
* @param id 公告ID
* @return 公告信息
*/
@Override
public Notice selectNoticeById(Integer id)
{
return noticeMapper.selectNoticeById(id);
}
/**
* 查询公告列表
*
* @param notice 公告信息
* @return 公告集合
*/
@Override
public List<Notice> selectNoticeList(Notice notice)
{
return noticeMapper.selectNoticeList(notice);
}
/**
* 新增公告
*
* @param notice 公告信息
* @return 结果
*/
@Override
public int insertNotice(Notice notice)
{
notice.setCreateBy(ShiroUtils.getLoginName());
return noticeMapper.insertNotice(notice);
}
/**
* 修改公告
*
* @param notice 公告信息
* @return 结果
*/
@Override
public int updateNotice(Notice notice)
{
notice.setUpdateBy(ShiroUtils.getLoginName());
return noticeMapper.updateNotice(notice);
}
/**
* 删除公告对象
*
* @param ids 需要删除的数据ID
* @return 结果
*/
@Override
public int deleteNoticeByIds(String ids)
{
return noticeMapper.deleteNoticeByIds(Convert.toStrArray(ids));
}
}