| | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.java110.core.context.IPageData; |
| | | import com.java110.web.smo.INavServiceSMO; |
| | | import com.java110.web.smo.notice.IListNoticesSMO; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.http.HttpStatus; |
| | | import org.springframework.http.ResponseEntity; |
| | |
| | | @Autowired |
| | | private INavServiceSMO navServiceSMOImpl; |
| | | |
| | | @Autowired |
| | | private IListNoticesSMO listNoticesSMOImpl; |
| | | |
| | | |
| | | /** |
| | | * 查询通知信息 |
| | |
| | | */ |
| | | public ResponseEntity<String> getNavData(IPageData pd) { |
| | | |
| | | String result = "{'noticeSize':10," |
| | | + "'moreNoticeUrl':'/moreNotice','notices':[" |
| | | + "{'msg':'新系统开发测试','date':'2019-03-19'}," |
| | | + "{'msg':'权限检查测试','date':'2019-03-21'}," |
| | | + "{'msg':'系统欲开发测试','date':'2019-03-20'}" |
| | | + "]}"; |
| | | |
| | | JSONObject nav = JSONObject.parseObject(result); |
| | | |
| | | return new ResponseEntity<String>(nav.toJSONString(), HttpStatus.OK); |
| | | return listNoticesSMOImpl.listNotices(pd); |
| | | } |
| | | |
| | | |
| | |
| | | this.navServiceSMOImpl = navServiceSMOImpl; |
| | | } |
| | | |
| | | public IListNoticesSMO getListNoticesSMOImpl() { |
| | | return listNoticesSMOImpl; |
| | | } |
| | | |
| | | public void setListNoticesSMOImpl(IListNoticesSMO listNoticesSMOImpl) { |
| | | this.listNoticesSMOImpl = listNoticesSMOImpl; |
| | | } |
| | | } |