新增商用车车型导入触发类

This commit is contained in:
zhangjun 2019-05-31 10:03:32 +08:00
parent b11a3fa5b7
commit c7e1a19deb

View File

@ -0,0 +1,26 @@
package com.tenwa.apzl.discount;
import java.util.List;
import java.util.Map;
import com.amarsoft.are.jbo.BizObject;
import com.amarsoft.are.jbo.JBOTransaction;
import com.amarsoft.awe.util.SqlObject;
import com.amarsoft.awe.util.Transaction;
import com.amarsoft.context.ASUser;
import com.tenwa.officetempalte.importcallback.impl.BaseImportExcelCallBack;
public class ModelLibraryImport extends BaseImportExcelCallBack{
@Override
public void run(ASUser CurUser, BizObject importObject,Map<String, String> model, Integer rowIndex, JBOTransaction tx,Transaction Sqlca) throws Exception {
}
@Override
public void runAfter(ASUser CurUser, Map<String, String> model, List<BizObject> importObjects, JBOTransaction tx,
Transaction Sqlca) throws Exception {
// ÉÌÓóµ³µÐ͵¼ÈëÅäÖÃ
Sqlca.executeSQL(new SqlObject("{call proc_insert_shangyongche()}"));
}
}