- 在BatchImportSupport中添加CompanyIdRefreshStats统计类 - 实现基于企业名称匹配的companyId批量更新逻辑 - 添加normalizeCompanyName和addCompanyNameMapping辅助方法 - 在各个Credit控制器中注入CreditCompanyService依赖 - 为所有相关控制器添加/company-id/refresh接口端点 - 实现多租户环境下的安全匹配和更新机制 - 支持limit参数控制批量处理数量 - 提供详细的更新统计数据返回
119 lines
3.5 KiB
Java
119 lines
3.5 KiB
Java
/**
|
|
* Copyright 2013-2015 JueYue (qrb.jueyue@gmail.com)
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
package cn.afterturn.easypoi.excel.entity;
|
|
|
|
import cn.afterturn.easypoi.handler.inter.IExcelVerifyHandler;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 导入参数设置
|
|
*
|
|
* @author JueYue
|
|
* 2013-9-24
|
|
* @version 1.0
|
|
*/
|
|
@Data
|
|
public class ImportParams extends ExcelBaseParams {
|
|
|
|
public static final String SAVE_URL = "/excel/upload/excelUpload";
|
|
|
|
/**
|
|
* 表格标题行数,默认0
|
|
*/
|
|
private int titleRows = 0;
|
|
/**
|
|
* 表头行数,默认1
|
|
*/
|
|
private int headRows = 1;
|
|
/**
|
|
* 字段真正值和列标题之间的距离 默认0
|
|
*/
|
|
private int startRows = 0;
|
|
|
|
/**
|
|
* 主键设置,如何这个cell没有值,就跳过 或者认为这个是list的下面的值
|
|
* 大家不理解,去掉这个
|
|
*/
|
|
|
|
private Integer keyIndex = null;
|
|
/**
|
|
* 开始读取的sheet位置,默认为0
|
|
*/
|
|
private int startSheetIndex = 0;
|
|
/**
|
|
* 上传表格需要读取的sheet 数量,默认为1
|
|
*/
|
|
private int sheetNum = 1;
|
|
/**
|
|
* 是否需要保存上传的Excel,默认为false
|
|
*/
|
|
private boolean needSave = false;
|
|
/**
|
|
* 校验组
|
|
*/
|
|
private Class[] verifyGroup = null;
|
|
/**
|
|
* 是否需要校验上传的Excel,默认为false
|
|
*/
|
|
private boolean needVerify = false;
|
|
/**
|
|
* 返回文件是否分割,默认是分割
|
|
*/
|
|
private boolean verifyFileSplit = true;
|
|
/**
|
|
* 校验处理接口
|
|
*/
|
|
private IExcelVerifyHandler verifyHandler;
|
|
/**
|
|
* 保存上传的Excel目录,默认是 如 TestEntity这个类保存路径就是
|
|
* upload/excelUpload/Test/yyyyMMddHHmss_***** 保存名称上传时间_五位随机数
|
|
*/
|
|
private String saveUrl = SAVE_URL;
|
|
/**
|
|
* 最后的无效行数
|
|
*/
|
|
private int lastOfInvalidRow = 0;
|
|
/**
|
|
* 手动控制读取的行数
|
|
*/
|
|
private int readRows = 0;
|
|
/**
|
|
* 导入时校验数据模板,是不是正确的Excel
|
|
*/
|
|
private String[] importFields;
|
|
/**
|
|
* 导入时校验excel的标题列顺序。依赖于importFields的配置顺序
|
|
*/
|
|
private boolean needCheckOrder = false;
|
|
/**
|
|
* Key-Value 读取标记,以这个为Key,后面一个Cell 为Value,多个改为ArrayList
|
|
*/
|
|
private String keyMark = ":";
|
|
/**
|
|
* 按照Key-Value 规则读取全局扫描Excel,但是跳过List读取范围提升性能
|
|
* 仅仅支持titleRows + headRows + startRows 以及 lastOfInvalidRow
|
|
*/
|
|
private boolean readSingleCell = false;
|
|
/**
|
|
* 是否并行计算
|
|
*/
|
|
private boolean concurrentTask = false;
|
|
/**
|
|
* 最小截取大小
|
|
*/
|
|
private Integer critical = 1000;
|
|
}
|