zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.shlanbao.tzsc.utils.tools;
 
import com.opensymphony.xwork2.ActionSupport;
import com.shlanbao.tzsc.pms.sys.repairResquest.beans.RepairResquestBean;
 
public class TestAction extends ActionSupport{
    private static final long serialVersionUID = 9999999999L;
    public static  boolean exec(RepairResquestBean rb){
        try {
            
            /**
             * url   推送到的jsp页面
             * funcationName   web接收端js方法
             * message   入参
             * DwrPush.pushMsgToAnyJSP("/wjcy_tpyl!viewImgs.action", "text2",nu);
             * */
            DwrPush.pushMsgToAnyJSP("/wct/eqm/send_news.jsp", "text2",rb);
            return true;
        } catch (Exception e) {
            e.printStackTrace();
            return false;
        }
        
        
    }
 
}