|
|
@ -22,6 +22,8 @@ import org.springblade.desk.entity.Notice; |
|
|
|
import org.springblade.desk.vo.NoticeVO; |
|
|
|
import org.springblade.desk.vo.NoticeVO; |
|
|
|
import org.springblade.system.cache.DictCache; |
|
|
|
import org.springblade.system.cache.DictCache; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.Objects; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Notice包装类,返回视图层所需的字段 |
|
|
|
* Notice包装类,返回视图层所需的字段 |
|
|
|
* |
|
|
|
* |
|
|
@ -35,7 +37,7 @@ public class NoticeWrapper extends BaseEntityWrapper<Notice, NoticeVO> { |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public NoticeVO entityVO(Notice notice) { |
|
|
|
public NoticeVO entityVO(Notice notice) { |
|
|
|
NoticeVO noticeVO = BeanUtil.copy(notice, NoticeVO.class); |
|
|
|
NoticeVO noticeVO = Objects.requireNonNull(BeanUtil.copy(notice, NoticeVO.class)); |
|
|
|
String dictValue = DictCache.getValue("notice", noticeVO.getCategory()); |
|
|
|
String dictValue = DictCache.getValue("notice", noticeVO.getCategory()); |
|
|
|
noticeVO.setCategoryName(dictValue); |
|
|
|
noticeVO.setCategoryName(dictValue); |
|
|
|
return noticeVO; |
|
|
|
return noticeVO; |
|
|
|