发起查询客户信息 _temp 临时表查询

This commit is contained in:
liujiaji 2018-08-23 17:18:40 +08:00
parent c0cddefe0e
commit 0279fded25

View File

@ -1,6 +1,6 @@
package apx.com.amarsoft.als.base.awe.execute.method;
import jbo.app.tenwa.customer.CUSTOMER_INFO;
import jbo.app.tenwa.customer.CUSTOMER_INFO_TEMP;
import jbo.app.tenwa.customer.CUSTOMER_PERSON_TEMP;
import jbo.com.tenwa.lease.comm.LB_UNION_LESSEE_TEMP;
@ -50,7 +50,7 @@ public class BusinessCustomerMethod {
String CustomerId = getCustomerIdByFlowUnid(flowUnid);
BizObjectManager customerInfoManage = JBOFactory.getBizObjectManager(CUSTOMER_INFO.CLASS_NAME);
BizObjectManager customerInfoManage = JBOFactory.getBizObjectManager(CUSTOMER_INFO_TEMP.CLASS_NAME);
return customerInfoManage.createQuery("customerid=:customerid")
.setParameter("customerid", CustomerId).getSingleResult(false);
}