From c7e1a19deb343743404b48c09766e7aa4b139cb0 Mon Sep 17 00:00:00 2001 From: zhangjun Date: Fri, 31 May 2019 10:03:32 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=95=86=E7=94=A8=E8=BD=A6?= =?UTF-8?q?=E8=BD=A6=E5=9E=8B=E5=AF=BC=E5=85=A5=E8=A7=A6=E5=8F=91=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../apzl/discount/ModelLibraryImport.java | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src_tenwa/com/tenwa/apzl/discount/ModelLibraryImport.java diff --git a/src_tenwa/com/tenwa/apzl/discount/ModelLibraryImport.java b/src_tenwa/com/tenwa/apzl/discount/ModelLibraryImport.java new file mode 100644 index 000000000..a415c418e --- /dev/null +++ b/src_tenwa/com/tenwa/apzl/discount/ModelLibraryImport.java @@ -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 model, Integer rowIndex, JBOTransaction tx,Transaction Sqlca) throws Exception { + + + } +@Override +public void runAfter(ASUser CurUser, Map model, List importObjects, JBOTransaction tx, + Transaction Sqlca) throws Exception { + // 商用车车型导入配置 + Sqlca.executeSQL(new SqlObject("{call proc_insert_shangyongche()}")); +} +}