web_backend_develope
chenlw 9 years ago
parent fefc71355e
commit 8a8e52357d

Binary file not shown.

@ -161,7 +161,7 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
<!-- 批量插入 -->
<select id="insertBatch" parameterType="java.util.List">
INSERT INTO standard_data_info ( <include refid="Batch_Column_List" /> )
INSERT INTO default_data_description ( <include refid="Batch_Column_List" /> )
VALUES
<foreach collection="list" item="item" index="index" separator=",">
(#{item.areaCode,jdbcType=VARCHAR},#{item.sysCode,jdbcType=INTEGER},#{item.areaLevel,jdbcType=VARCHAR},#{item.dataVersion,jdbcType=VARCHAR},#{item.beginUseTime},#{item.functionDetails},
@ -175,7 +175,7 @@ PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"
<!-- 更新字段 -->
<update id="update" parameterType="com.platform.entities.PreDataInfoFull">
UPDATE
standard_data_info
default_data_description
<set>
<trim suffixOverrides=",">
<if test="collection != null and collection != ''">

@ -31,12 +31,13 @@ public class ExcelTest {
Date date = new Date();
PreDataInfo info = new PreDataInfo();
info.setAnalysisOfFinancialEconomicProsperity("否");
info.setGovernmentDebtManage("是");;
info.setAreaCode("321167");
info.setBeginUseTime("201107");
info.setFunctionDetails("这是一个神奇的功能");
info.setDataVersion("2");
List<PreDataInfo> list = new ArrayList<PreDataInfo>();
for (int i = 0; i < 400; i++) {
for (int i = 0; i < 4; i++) {
list.add(info);
}
// InputStreamReader in= new InputStreamReader(Resource.class.getResourceAsStream(templateFilePath), "UTF-8");
@ -46,7 +47,7 @@ public class ExcelTest {
XSSFWorkbook result = null;
try {
workbook = new XSSFWorkbook(res.getInputStream());
result = ExcelOperation.writeExcelTemplate(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, list);
result = ExcelOperation.writeExcelTemplate(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, 25, list,"id", "workRange");
} catch (IllegalArgumentException
| IllegalAccessException | IOException e) {
// TODO Auto-generated catch block
@ -83,7 +84,7 @@ public class ExcelTest {
XSSFWorkbook workbook = null;
try {
workbook = new XSSFWorkbook(f);
list = ExcelOperation.readExcel4Update(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, PreDataInfo.class);
list = ExcelOperation.readExcel4Update(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, PreDataInfo.class,"id");
} catch (IllegalArgumentException
| IllegalAccessException | InstantiationException | InvalidFormatException | IOException e) {
e.printStackTrace();

Loading…
Cancel
Save