no message
parent
662ec41297
commit
f61836144b
Binary file not shown.
@ -0,0 +1,20 @@
|
||||
package com.engine.custom.corn;
|
||||
|
||||
import weaver.conn.RecordSet;
|
||||
import weaver.general.BaseBean;
|
||||
import weaver.interfaces.schedule.BaseCronJob;
|
||||
|
||||
public class WeekReportCorn extends BaseCronJob {
|
||||
BaseBean baseBean = new BaseBean();
|
||||
@Override
|
||||
public void execute() {
|
||||
RecordSet recordSet = new RecordSet();
|
||||
recordSet.executeUpdate("insert into xlbb_grzbzz_xda(userid,depid,lczs,ybsl, pjhs, zdhs, zxhs, dbcount, dbzchs , pm,insertdate)select userid,depid,lczs,ybsl,round(pjhs,4) as pjhs,zdhs,zxhs,dbcount,dbzchs ,pm ,to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') as insertdate from xlbb_grzbzz_xda_view");
|
||||
writeLog("执行sql=====>insert into xlbb_grzbzz_xda(userid,depid,lczs,ybsl, pjhs, zdhs, zxhs, dbcount, dbzchs , pm,insertdate)select userid,depid,lczs,ybsl,round(pjhs,4) as pjhs,zdhs,zxhs,dbcount,dbzchs ,pm ,to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') as insertdate from xlbb_grzbzz_xda_view");
|
||||
writeLog("执行sql数量=====>"+recordSet.getCounts());
|
||||
}
|
||||
|
||||
private void writeLog(String log){
|
||||
baseBean.writeLog(log);
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,107 @@
|
||||
<%@ page import="weaver.conn.RecordSet" %>
|
||||
|
||||
|
||||
<%@ page import="java.util.ArrayList" %>
|
||||
<%@ page import="weaver.general.Util" %>
|
||||
<%@ page import="java.util.Map" %>
|
||||
<%@ page import="java.util.HashMap" %>
|
||||
<%@ page import="com.alibaba.fastjson.JSONObject" %>
|
||||
<%@ page import="com.icbc.api.internal.apache.http.impl.cookie.S" %>
|
||||
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
|
||||
|
||||
|
||||
<%
|
||||
String id = request.getParameter("id");
|
||||
// out.print(id);
|
||||
ArrayList<Map<String, String>> sourceidsList = new ArrayList<Map<String, String>>();
|
||||
RecordSet recordSet = new RecordSet();
|
||||
recordSet.executeQuery("select lcbt from uf_CCSPDTZ where id = ?",id);
|
||||
int lc = 0;
|
||||
if (recordSet.next()){
|
||||
lc = Util.getIntValue(recordSet.getString("lcbt"));
|
||||
}
|
||||
// out.print(lc+"\n");
|
||||
|
||||
String sqlWhere = " where JouneryID ";
|
||||
// uf_CCBGJLB
|
||||
recordSet.executeQuery("select mainid from uf_CCBGJLB_dt1 where ccbgjllc = ?",lc);
|
||||
if(recordSet.getCounts() == 0){
|
||||
// recordSet.executeQuery("select lc from uf_CCBGJLB ccqqlc = ?",lc);
|
||||
// recordSet.next();
|
||||
sqlWhere =sqlWhere + "LIKE '"+lc+"%'";
|
||||
}else {
|
||||
recordSet.next();
|
||||
String mainid = recordSet.getString("mainid");
|
||||
recordSet.executeQuery("select ccqqlc from uf_CCBGJLB where id = ?",mainid);
|
||||
recordSet.next();
|
||||
String ccqqlc = recordSet.getString("ccqqlc");
|
||||
sqlWhere =sqlWhere + "LIKE '"+ccqqlc+"%'";
|
||||
recordSet.executeQuery("select ccbgjllc from uf_CCBGJLB_dt1 where mainid = ?",mainid);
|
||||
while (recordSet.next()){
|
||||
String ccbgjllc = recordSet.getString("ccbgjllc");
|
||||
sqlWhere =sqlWhere + "or JouneryID LIKE '"+ccbgjllc+"%'";
|
||||
}
|
||||
}
|
||||
// out.print(sqlWhere+"\n");
|
||||
// sqlWhere = sqlWhere + "or JouneryID LIKE '"+332337+"%'";
|
||||
recordSet.execute("select * from ctrip_SettlemenTrainOrdert" + sqlWhere);
|
||||
while (recordSet.next()) {
|
||||
HashMap<String, String> map = new HashMap<>();
|
||||
map.put("JouneryID", Util.null2String(recordSet.getString("JouneryID")));
|
||||
map.put("OrderId", Util.null2String(recordSet.getString("OrderId")));
|
||||
map.put("DetailType", getTypeName(Util.null2String(recordSet.getString("DetailType"))));
|
||||
map.put("Type", "火车");
|
||||
map.put("PassengerName", Util.null2String(recordSet.getString("PassengerName")));
|
||||
map.put("DepartureCityName", Util.null2String(recordSet.getString("DepartureCityName")));
|
||||
map.put("DepartureDateTime", Util.null2String(recordSet.getString("DepartureDateTime")));
|
||||
map.put("ArrivalDateTime", Util.null2String(recordSet.getString("ArrivalDateTime")));
|
||||
map.put("DepartureStationName", Util.null2String(recordSet.getString("DepartureStationName")));
|
||||
map.put("ArrivalStationName", Util.null2String(recordSet.getString("ArrivalStationName")));
|
||||
sourceidsList.add(map);
|
||||
}
|
||||
recordSet.execute("select * from ctrip_SettlemenFlightOrdert" + sqlWhere);
|
||||
while (recordSet.next()) {
|
||||
HashMap<String, String> map = new HashMap<>();
|
||||
map.put("JouneryID", Util.null2String(recordSet.getString("JourneyID")));
|
||||
map.put("OrderId", Util.null2String(recordSet.getString("OrderId")));
|
||||
map.put("DetailType", getTypeName(Util.null2String(recordSet.getString("DetailType"))));
|
||||
map.put("Type", "飞机");
|
||||
map.put("PassengerName", Util.null2String(recordSet.getString("PassengerName")));
|
||||
map.put("DepartureCityName", Util.null2String(recordSet.getString("DCityName")));
|
||||
map.put("DepartureDateTime", Util.null2String(recordSet.getString("TakeOffTime2")));
|
||||
map.put("ArrivalDateTime", Util.null2String(recordSet.getString("ArrivalTime2")));
|
||||
map.put("DepartureStationName", Util.null2String(recordSet.getString("DPortName")));
|
||||
map.put("ArrivalStationName", Util.null2String(recordSet.getString("APortName")));
|
||||
sourceidsList.add(map);
|
||||
}
|
||||
recordSet.execute("select * from ctrip_SettlemenHotelOrdert" + sqlWhere);
|
||||
while (recordSet.next()) {
|
||||
HashMap<String, String> map = new HashMap<>();
|
||||
map.put("JouneryID", Util.null2String(recordSet.getString("HotelRelatedJourneyNo")));
|
||||
map.put("OrderId", Util.null2String(recordSet.getString("OrderId")));
|
||||
map.put("DetailType", getTypeName(Util.null2String(recordSet.getString("DetailType"))));
|
||||
map.put("Type", "酒店");
|
||||
map.put("PassengerName", Util.null2String(recordSet.getString("CityName")));
|
||||
map.put("DepartureCityName", Util.null2String(recordSet.getString("DepartureCityName")));
|
||||
map.put("DepartureDateTime", Util.null2String(recordSet.getString("StartTime")));
|
||||
map.put("ArrivalDateTime", Util.null2String(recordSet.getString("EndTime")));
|
||||
map.put("DepartureStationName", Util.null2String(recordSet.getString("HotelName")));
|
||||
map.put("ArrivalStationName", Util.null2String(recordSet.getString("HotelName")));
|
||||
sourceidsList.add(map);
|
||||
}
|
||||
out.println(JSONObject.toJSONString(sourceidsList));
|
||||
|
||||
%>
|
||||
<%!
|
||||
private String getTypeName(String type) {
|
||||
String s = "";
|
||||
if ("O".equals(type)) {
|
||||
s = "出票";
|
||||
} else if ("A".equals(type)) {
|
||||
s = "改签";
|
||||
} else if ("R".equals(type)) {
|
||||
s = "退票";
|
||||
}
|
||||
return s;
|
||||
}
|
||||
%>
|
@ -0,0 +1,81 @@
|
||||
<%@ page import="weaver.conn.RecordSet" %>
|
||||
<%@ page import="weaver.general.Util" %>
|
||||
<%@ page import="java.util.*" %>
|
||||
<%@ page import="com.alibaba.fastjson.JSONObject" %>
|
||||
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
|
||||
|
||||
|
||||
<%
|
||||
try {
|
||||
String id = request.getParameter("id");
|
||||
ArrayList<Map<String, String>> sourceidsList = new ArrayList<Map<String, String>>();
|
||||
RecordSet recordSet = new RecordSet();
|
||||
recordSet.executeQuery("select lcbt from uf_CCSPDTZ where id = ?",id);
|
||||
int lc = 0;
|
||||
if (recordSet.next()){
|
||||
lc = Util.getIntValue(recordSet.getString("lcbt"));
|
||||
}
|
||||
ArrayList<String> lcArr = new ArrayList();
|
||||
recordSet.executeQuery("select mainid from uf_CCBGJLB_dt1 where ccbgjllc = ?",lc);
|
||||
if(recordSet.getCounts() == 0){
|
||||
// recordSet.executeQuery("select lc from uf_CCBGJLB ccqqlc = ?",lc);
|
||||
// recordSet.next();
|
||||
lcArr.add(lc+"");
|
||||
}else {
|
||||
recordSet.next();
|
||||
String mainid = recordSet.getString("mainid");
|
||||
recordSet.executeQuery("select ccqqlc from uf_CCBGJLB where id = ?",mainid);
|
||||
recordSet.next();
|
||||
String ccqqlc = recordSet.getString("ccqqlc");
|
||||
lcArr.add(ccqqlc);
|
||||
recordSet.executeQuery("select ccbgjllc from uf_CCBGJLB_dt1 where mainid = ?",mainid);
|
||||
while (recordSet.next()){
|
||||
String ccbgjllc = recordSet.getString("ccbgjllc");
|
||||
lcArr.add(ccbgjllc);
|
||||
}
|
||||
}
|
||||
// out.print(lcArr);
|
||||
if (lcArr.size() > 0){
|
||||
recordSet.executeQuery("select requestid from formtable_main_206 where yccsj in ( " + String.join(",",lcArr) + ")");
|
||||
}
|
||||
ArrayList<String> requestArr = new ArrayList();
|
||||
while (recordSet.next()){
|
||||
String requestid = recordSet.getString("requestid");
|
||||
requestArr.add(requestid);
|
||||
}
|
||||
// out.print(requestArr);
|
||||
recordSet.executeQuery("select REQUESTID , currentnodetype ,REQUESTMARK from WORKFLOW_REQUESTBASE where REQUESTID in ( " + String.join(",",requestArr) + " )");
|
||||
ArrayList<String> noArchivingReq = new ArrayList<>();
|
||||
ArrayList<Map<String, String>> specialobj = new ArrayList<>();
|
||||
while (recordSet.next()){
|
||||
String currentnodetype = recordSet.getString("currentnodetype");
|
||||
if(!"3".equals(currentnodetype)){
|
||||
String requestid = recordSet.getString("requestid");
|
||||
String requestname = recordSet.getString("REQUESTMARK");
|
||||
noArchivingReq.add(requestid);
|
||||
HashMap<String, String> map = new HashMap<>();
|
||||
map.put("id",requestid);
|
||||
map.put("name",requestname);
|
||||
specialobj.add(map);
|
||||
}
|
||||
}
|
||||
if (noArchivingReq.size() > 0){
|
||||
HashMap<String, Object> changeFieldValue = new HashMap<>();
|
||||
String value= String.join(",",noArchivingReq);
|
||||
changeFieldValue.put("value" ,value );
|
||||
changeFieldValue.put("specialobj",specialobj);
|
||||
out.print(JSONObject.toJSONString(changeFieldValue));
|
||||
// out.print("-2");
|
||||
}else {
|
||||
out.print("-1");
|
||||
}
|
||||
}catch (Exception e){
|
||||
out.print(e);
|
||||
out.print("");
|
||||
out.print(e.getStackTrace());
|
||||
}
|
||||
|
||||
%>
|
||||
<%!
|
||||
|
||||
%>
|
@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
This is the JRebel configuration file. It maps the running application to your IDE workspace, enabling JRebel reloading for this project.
|
||||
Refer to https://manuals.jrebel.com/jrebel/standalone/config.html for more information.
|
||||
-->
|
||||
<application generated-by="intellij" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.zeroturnaround.com" xsi:schemaLocation="http://www.zeroturnaround.com http://update.zeroturnaround.com/jrebel/rebel-2_3.xsd">
|
||||
|
||||
<id>TestJrebel</id>
|
||||
|
||||
<classpath>
|
||||
<dir name="D:/Project/TestJrebel/out/production/TestJrebel">
|
||||
</dir>
|
||||
</classpath>
|
||||
|
||||
</application>
|
File diff suppressed because one or more lines are too long
@ -1,11 +0,0 @@
|
||||
package weaver.file;
|
||||
|
||||
import com.engine.workflow.service.RequestManagerService;
|
||||
import weaver.interfaces.encode.AES_IV;
|
||||
import weaver.workflow.request.RequestManager;
|
||||
|
||||
public class test {
|
||||
public static void main(String[] args) {
|
||||
|
||||
}
|
||||
}
|
@ -1,162 +0,0 @@
|
||||
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
|
||||
|
||||
<%@ page import="weaver.general.Util,weaver.conn.RecordSet" %>
|
||||
<%@ page import="weaver.integration.logging.Logger"%>
|
||||
<%@ page import="weaver.integration.logging.LoggerFactory"%>
|
||||
<%@ page import="weaver.ofs.bean.OfsSysInfo" %>
|
||||
<%@ page import="weaver.ofs.service.OfsSysInfoService" %>
|
||||
<%@ page import="weaver.ofs.manager.utils.OfsTodoDataUtils" %>
|
||||
<%@ page import="java.util.Map" %>
|
||||
<%@ page import="weaver.ofs.bean.OfsTodoData" %>
|
||||
<%@ page import="weaver.ofs.dao.OfsRequestBaseDao" %>
|
||||
<%@ page import="org.apache.commons.beanutils.BeanUtils" %>
|
||||
<%@ page import="org.apache.commons.lang3.StringUtils" %>
|
||||
<%@ page import="com.alibaba.fastjson.JSONObject" %>
|
||||
<%@ page import="weaver.interfaces.sso.cas.CASLoginUtil" %>
|
||||
<%@ page import="weaver.hrm.User" %>
|
||||
<%@ page import="weaver.general.BaseBean" %>
|
||||
<%@ include file="/systeminfo/init_wev8.jsp" %>
|
||||
|
||||
<%
|
||||
Logger log = LoggerFactory.getLogger();
|
||||
//补偿 认证 cas ,如果统一认证 开启 自动补偿刷新
|
||||
CASLoginUtil.WxDingDingLoginSSO(request , response) ;
|
||||
|
||||
RecordSet rs = new RecordSet();
|
||||
String type = request.getParameter("type") ;
|
||||
String sysId = request.getParameter("sysId") ;
|
||||
String workflowId = request.getParameter("workflowId") ;
|
||||
String flowId = request.getParameter("flowId") ;
|
||||
if ("".equals(sysId) || "".equals(type) || "".equals(workflowId) || "".equals(flowId)){
|
||||
out.println(" parameter error ");
|
||||
return;
|
||||
}
|
||||
int userId = user.getUID() ;
|
||||
|
||||
Map<String, String[]> paramMap =request.getParameterMap() ;
|
||||
|
||||
OfsSysInfoService ofsSysInfoService = new OfsSysInfoService() ;
|
||||
OfsSysInfo ofsSysInfo = ofsSysInfoService.getOneBean(Util.getIntValue(sysId , 0)) ;
|
||||
if (ofsSysInfo == null || "".equals(Util.null2String(ofsSysInfo.getSysid()))){
|
||||
log.error("根据标识:"+sysId+"未查询到数据");
|
||||
out.println("根据标识:"+sysId+"未查询到数据");
|
||||
return;
|
||||
}
|
||||
|
||||
OfsTodoDataUtils todoDataUtils = new OfsTodoDataUtils() ;
|
||||
OfsRequestBaseDao ofsRequestBaseDao = new OfsRequestBaseDao() ;
|
||||
OfsTodoData todoData = null;
|
||||
String requestId = ofsRequestBaseDao.getRequestid(ofsSysInfo.getSyscode() , Util.getIntValue(workflowId , 0) , flowId , rs.getDBType()) ;
|
||||
if(!"".equals(Util.null2String(requestId)))
|
||||
todoData = todoDataUtils.getTodoData(requestId , Util.null2String(userId)) ;
|
||||
|
||||
if (todoData == null) {
|
||||
todoData = this.getTodoData(flowId, workflowId, sysId, user);
|
||||
if (todoData == null) {
|
||||
log.error("根据标识:" + ofsSysInfo.getSyscode() + " workflowId:" + workflowId + " flowId: " + flowId + "未查询到数据");
|
||||
out.println("根据标识:" + ofsSysInfo.getSyscode() + " workflowId:" + workflowId + " flowId: " + flowId + "未查询到数据");
|
||||
return;
|
||||
}
|
||||
}
|
||||
String toURL = todoDataUtils.getURL("app".equalsIgnoreCase(type)? "1":"0" , ofsSysInfo , todoData , request , paramMap) ;
|
||||
new BaseBean().writeLog("跳转URL:" + toURL);
|
||||
new BaseBean().writeLog("跳转userid:" + userId);
|
||||
new BaseBean().writeLog("跳转parma:" + paramMap);
|
||||
log.warn("跳转URL:" + toURL);
|
||||
|
||||
|
||||
rs.executeUpdate("update ofs_todo_data set viewtype=1 where requestid=? and userid=? and islasttimes=1" , requestId , userId);
|
||||
|
||||
rs.executeUpdate("update ofs_done_data set viewtype=1 where requestid=? and userid=? " , requestId , userId);
|
||||
|
||||
rs.executeUpdate("delete from SysPoppupRemindInfoNew where userid = ? and requestid = ?", userId, requestId);
|
||||
response.sendRedirect(toURL);
|
||||
|
||||
%>
|
||||
|
||||
<%!
|
||||
Logger log = LoggerFactory.getLogger();
|
||||
|
||||
/**
|
||||
* 获取 异构系统流程数据
|
||||
* @return
|
||||
*/
|
||||
private OfsTodoData getTodoData(String flowId ,String workflowId , String sysId ,User user ){
|
||||
RecordSet rs = new RecordSet() ;
|
||||
|
||||
List<String> userList = new ArrayList<>();
|
||||
userList.add(user.getUID() + "");
|
||||
if (!"".equals(Util.null2String(user.getBelongtoids())))
|
||||
userList.add(user.getBelongtoids());
|
||||
//开启 主次账号 ,并且有多个用户
|
||||
rs.executeQuery("select * from ofs_todo_data where flowid=? and workflowid=? and sysid=? and userid in ( "+String.join("," , userList)+" )",
|
||||
flowId , workflowId , sysId);
|
||||
OfsTodoData ofsTodoData = this.putValue2Bean(rs) ;
|
||||
if (StringUtils.isBlank(ofsTodoData.getFlowid())){
|
||||
rs.executeQuery("select * from ofs_done_data where flowid=? and workflowid=? and sysid=? and userid in ( "+String.join("," , userList)+" )",
|
||||
flowId , workflowId , sysId);
|
||||
OfsTodoData ofsDoneData = this.putValue2Bean(rs);
|
||||
if (StringUtils.isBlank(ofsDoneData.getFlowid())){
|
||||
log.error("flowId : "+ flowId +" workflowId : "+ workflowId +" sysId : "+ sysId +" userId:"+user.getUID() + " 没有对应数据");
|
||||
return null ;
|
||||
}
|
||||
log.error("ofsTodoData : "+ JSONObject.toJSONString(ofsDoneData));
|
||||
return ofsDoneData ;
|
||||
}
|
||||
log.error("ofsTodoData : "+ JSONObject.toJSONString(ofsTodoData));
|
||||
return ofsTodoData ;
|
||||
|
||||
|
||||
}
|
||||
/**
|
||||
* 将待办信息从数据库查询出来放入bean中
|
||||
* @param rs
|
||||
*/
|
||||
private OfsTodoData putValue2Bean(RecordSet rs) {
|
||||
rs.next();
|
||||
OfsTodoData ofsTodoData = new OfsTodoData();
|
||||
try{
|
||||
BeanUtils.setProperty(ofsTodoData,"id", Util.getIntValue(rs.getString("id"), 0)+"");
|
||||
BeanUtils.setProperty(ofsTodoData,"sysid", Util.getIntValue(rs.getString("sysid"), 0)+"");
|
||||
BeanUtils.setProperty(ofsTodoData,"syscode", Util.null2String(rs.getString("syscode"), ""));
|
||||
BeanUtils.setProperty(ofsTodoData,"requestid", Util.null2String(rs.getString("requestid")));
|
||||
BeanUtils.setProperty(ofsTodoData,"flowid", Util.null2String(rs.getString("flowid")));
|
||||
// BeanUtils.setProperty(ofsTodoData,"flowguid", Util.null2String(rs.getString("flowguid")));
|
||||
BeanUtils.setProperty(ofsTodoData,"requestname", Util.null2String(rs.getString("requestname")));
|
||||
BeanUtils.setProperty(ofsTodoData,"workflowname", Util.null2String(rs.getString("workflowname")));
|
||||
BeanUtils.setProperty(ofsTodoData,"workflowid", Util.null2String(rs.getString("workflowid")));
|
||||
BeanUtils.setProperty(ofsTodoData,"nodename", Util.null2String(rs.getString("nodename")));
|
||||
BeanUtils.setProperty(ofsTodoData,"isremark", Util.null2String(rs.getString("isremark")));
|
||||
BeanUtils.setProperty(ofsTodoData,"viewtype", Util.null2String(rs.getString("viewtype")));
|
||||
BeanUtils.setProperty(ofsTodoData,"islasttimes", Util.null2String(rs.getString("islasttimes")));
|
||||
BeanUtils.setProperty(ofsTodoData,"iscomplete", Util.null2String(rs.getString("iscomplete")));
|
||||
BeanUtils.setProperty(ofsTodoData,"hrmtransrule", Util.null2String(rs.getString("hrmtransrule")));
|
||||
BeanUtils.setProperty(ofsTodoData,"pcurl", Util.null2String(rs.getString("pcurl")));
|
||||
BeanUtils.setProperty(ofsTodoData,"appurl", Util.null2String(rs.getString("appurl")));
|
||||
|
||||
BeanUtils.setProperty(ofsTodoData,"creator", Util.null2String(rs.getString("creator")));
|
||||
BeanUtils.setProperty(ofsTodoData,"creatorid", Util.null2String(rs.getString("creatorid")));
|
||||
BeanUtils.setProperty(ofsTodoData,"createdate", Util.null2String(rs.getString("createdate")));
|
||||
BeanUtils.setProperty(ofsTodoData,"createtime", Util.null2String(rs.getString("createtime")));
|
||||
|
||||
BeanUtils.setProperty(ofsTodoData,"userid", Util.null2String(rs.getString("userid")));
|
||||
BeanUtils.setProperty(ofsTodoData,"receiver", Util.null2String(rs.getString("receiver")));
|
||||
BeanUtils.setProperty(ofsTodoData,"receivedate", Util.null2String(rs.getString("receivedate")));
|
||||
BeanUtils.setProperty(ofsTodoData,"receivetime", Util.null2String(rs.getString("receivetime")));
|
||||
|
||||
BeanUtils.setProperty(ofsTodoData,"modifier", Util.null2String(rs.getString("modifier")));
|
||||
BeanUtils.setProperty(ofsTodoData,"modifydate", Util.null2String(rs.getString("modifydate")));
|
||||
BeanUtils.setProperty(ofsTodoData,"modifytime", Util.null2String(rs.getString("modifytime")));
|
||||
BeanUtils.setProperty(ofsTodoData,"pcurlsrc", Util.null2String(rs.getString("pcurlsrc")));
|
||||
BeanUtils.setProperty(ofsTodoData,"appurlsrc", Util.null2String(rs.getString("appurlsrc")));
|
||||
BeanUtils.setProperty(ofsTodoData,"requestlevel", Util.null2String(rs.getString("requestlevel")));
|
||||
BeanUtils.setProperty(ofsTodoData,"receivets", Util.null2String(rs.getString("receivets")));
|
||||
BeanUtils.setProperty(ofsTodoData,"pcurlsrc", Util.null2String(rs.getString("pcurlsrc")));
|
||||
BeanUtils.setProperty(ofsTodoData,"appurlsrc", Util.null2String(rs.getString("appurlsrc")));
|
||||
return ofsTodoData;
|
||||
}catch(Exception e){
|
||||
log.error(e);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
%>
|
@ -1,27 +0,0 @@
|
||||
|
||||
<%@ page import="weaver.conn.RecordSet" %>
|
||||
|
||||
<%@ page import="weaver.conn.RecordSetTrans" %>
|
||||
<%@ page import="com.engine.workflow.util.CommonUtil" %>
|
||||
<%@ page import="weaver.hrm.User" %>
|
||||
<%@ page import="com.engine.workflow.util.WorkflowDimensionUtils" %>
|
||||
<%@ page import="com.cloudstore.dev.api.util.Util_TableMap" %>
|
||||
<%@ page import="weaver.general.Util" %>
|
||||
<%@ page import="weaver.workflow.workflow.WorkflowComInfo" %>
|
||||
<%@ page import="weaver.workflow.workflow.WorkflowRequestComInfo" %>
|
||||
<%@ page import="weaver.workflow.request.WFUrgerManager" %>
|
||||
<%@ page import="java.util.Calendar" %>
|
||||
<%@ page import="util.DataTransUtil" %>
|
||||
<%@ page import="weaver.hrm.HrmUserVarify" %>
|
||||
<%@ page import="com.api.browser.service.BrowserValueInfoService" %>
|
||||
<%@ page import="java.util.Map" %>
|
||||
<%@ page import="java.util.List" %>
|
||||
<%@ page import="java.util.HashMap" %>
|
||||
<%@ page import="com.alibaba.fastjson.JSON" %>
|
||||
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
|
||||
|
||||
<%
|
||||
|
||||
out.println("3333333333333333333" );
|
||||
|
||||
%>
|
Loading…
Reference in New Issue