|
|
@ -18,6 +18,7 @@ |
|
|
|
package com.elink.esua.epdc.dao; |
|
|
|
|
|
|
|
import com.elink.esua.epdc.commons.mybatis.dao.BaseDao; |
|
|
|
import com.elink.esua.epdc.dto.NoticeDTO; |
|
|
|
import com.elink.esua.epdc.dto.epdc.form.EpdcNoticeListFormDTO; |
|
|
|
import com.elink.esua.epdc.dto.epdc.result.EpdcNoticeDetailResultDTO; |
|
|
|
import com.elink.esua.epdc.dto.epdc.result.EpdcNoticeListResultDTO; |
|
|
@ -26,6 +27,7 @@ import org.apache.ibatis.annotations.Mapper; |
|
|
|
import org.apache.ibatis.annotations.Param; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
/** |
|
|
|
* 通知表 |
|
|
@ -75,4 +77,14 @@ public interface NoticeDao extends BaseDao<NoticeEntity> { |
|
|
|
* @date 2019/9/25 14:28 |
|
|
|
*/ |
|
|
|
int updateNoticeById(NoticeEntity entity); |
|
|
|
|
|
|
|
/** |
|
|
|
* 根据用户数据权限,匹配通知部门关系表 |
|
|
|
* |
|
|
|
* @param params |
|
|
|
* @return java.util.List<com.elink.esua.epdc.dto.NoticeDTO> |
|
|
|
* @author work@yujt.net.cn |
|
|
|
* @date 2020/2/1 11:28 |
|
|
|
*/ |
|
|
|
List<NoticeDTO> selectListByDeptId(Map<String, Object> params); |
|
|
|
} |