| | |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.ltkj.common.core.domain.AjaxResult; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | import com.ltkj.system.domain.SysNotice; |
| | |
| | | public int deleteNoticeByIds(Long[] noticeIds) { |
| | | return noticeMapper.deleteNoticeByIds(noticeIds); |
| | | } |
| | | |
| | | @Override |
| | | public List<SysNotice> selectAllByAdmin() { |
| | | return noticeMapper.selectAllByAdmin(); |
| | | } |
| | | |
| | | @Override |
| | | public List<SysNotice> selectAll(String userId) { |
| | | return noticeMapper.selectAll(userId); |
| | | } |
| | | } |