package com.tenwa.flow.fund.copyebank; import java.util.HashMap; import java.util.Map; import com.amarsoft.awe.util.Transaction; import com.amarsoft.biz.bizlet.Bizlet; import com.tenwa.flow.baseBussion.BaseBussiness; import com.tenwa.lease.flow.comm.service.LeaseFlowBaseService; import com.tenwa.lease.flow.comm.service.ServiceOperatorEnum; import com.tenwa.lease.flow.comm.serviceImp.LeaseFlowBaseServiceImp; /** * 拷贝网银数据到临时表 * @author zhulh * */ public class CopyEbankInfoToTemp extends BaseBussiness{ public Object run(Transaction Sqlca) throws Exception{ this.initBussinessParam(Sqlca.getTransaction()); String sFlowUnid = (String)this.getAttribute("ObjectNo"); String id = (String)this.getAttribute("ebank_number"); Map fromCondtion = new HashMap(); fromCondtion.put("id",id); Map otherProperty = new HashMap(); otherProperty.put("FlowUnid", sFlowUnid); // otherProperty.put("ID", id); LeaseFlowBaseService service=new LeaseFlowBaseServiceImp(); service.copyEbankInfo(Sqlca, fromCondtion, null,otherProperty, ServiceOperatorEnum.FormalToTemp); String sMessage="true"; return sMessage; } }