疯狂的狮子li
2022-01-11 26fc652d33fb82a75d6ec7771ca50ee414b21723
ruoyi-common/src/main/java/com/ruoyi/common/convert/ExcelBigNumberConvert.java
@@ -20,32 +20,32 @@
@Slf4j
public class ExcelBigNumberConvert implements Converter<Long> {
   @Override
   public Class<Long> supportJavaTypeKey() {
      return Long.class;
   }
    @Override
    public Class<Long> supportJavaTypeKey() {
        return Long.class;
    }
   @Override
   public CellDataTypeEnum supportExcelTypeKey() {
      return CellDataTypeEnum.STRING;
   }
    @Override
    public CellDataTypeEnum supportExcelTypeKey() {
        return CellDataTypeEnum.STRING;
    }
   @Override
   public Long convertToJavaData(CellData cellData, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) {
      return Convert.toLong(cellData.getData());
   }
    @Override
    public Long convertToJavaData(CellData cellData, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) {
        return Convert.toLong(cellData.getData());
    }
   @Override
   public CellData<Object> convertToExcelData(Long object, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) {
      if (ObjectUtil.isNotNull(object)) {
         String str = Convert.toStr(object);
         if (str.length() > 15) {
            return new CellData<>(str);
         }
      }
      CellData<Object> cellData = new CellData<>(new BigDecimal(object));
      cellData.setType(CellDataTypeEnum.NUMBER);
      return cellData;
   }
    @Override
    public CellData<Object> convertToExcelData(Long object, ExcelContentProperty contentProperty, GlobalConfiguration globalConfiguration) {
        if (ObjectUtil.isNotNull(object)) {
            String str = Convert.toStr(object);
            if (str.length() > 15) {
                return new CellData<>(str);
            }
        }
        CellData<Object> cellData = new CellData<>(new BigDecimal(object));
        cellData.setType(CellDataTypeEnum.NUMBER);
        return cellData;
    }
}