|
@@ -1,6 +1,7 @@
|
|
|
package com.tianhu.system.controller;
|
|
|
|
|
|
import com.keao.tianhu.core.entity.R;
|
|
|
+import com.tianhu.common.core.utils.CommonUtil;
|
|
|
import com.tianhu.common.core.web.controller.BaseController;
|
|
|
import com.tianhu.common.core.web.domain.AjaxResult;
|
|
|
import com.tianhu.common.core.web.page.TableDataInfo;
|
|
@@ -56,6 +57,11 @@ public class OwnNoticeController extends BaseController
|
|
|
map.put("noticeType",sysNotice.getNoticeType());
|
|
|
//待办类型
|
|
|
map.put("workType",sysNotice.getWorkType());
|
|
|
+ if(CommonUtil.isEmpty(sysNotice.getStatus())){
|
|
|
+ map.put("status","0");
|
|
|
+ }else{
|
|
|
+ map.put("status",sysNotice.getStatus());
|
|
|
+ }
|
|
|
startPage();
|
|
|
List<Map> list = iOwnNoticeService.selectOwnNoticeList(map);
|
|
|
return getDataTable(list);
|