apzl_leasing/src_tenwa/com/tenwa/customer/cache/CustomerNameManager.java
2018-06-03 22:26:41 +08:00

11 lines
381 B
Java

package com.tenwa.customer.cache;
import com.amarsoft.dict.als.cache.NameCache;
import com.amarsoft.dict.als.manage.NameManager;
public class CustomerNameManager extends NameManager {
public static String getCustomerName(String sCustomerID)throws Exception{
return NameCache.getName("jbo.app.tenwa.customer.CUSTOMER_INFO", "customername", "customerid", sCustomerID);
}
}