Commit bd1b4552 by guojuxing

pmd

parent 528f8978
...@@ -56,9 +56,9 @@ public class ExcelUtils { ...@@ -56,9 +56,9 @@ public class ExcelUtils {
for (int j = 0; j < everyLines.get(i).size(); j++) { for (int j = 0; j < everyLines.get(i).size(); j++) {
sheet.setColumnWidth(j, COLUMN_HEIGHT); sheet.setColumnWidth(j, COLUMN_HEIGHT);
//将内容按顺序赋给对应的列对象 //将内容按顺序赋给对应的列对象
XSSFCell cell1 = row.createCell(j); XSSFCell cellTemp = row.createCell(j);
cell1.setCellValue(everyLines.get(i).get(j)); cellTemp.setCellValue(everyLines.get(i).get(j));
cell1.setCellStyle(style); cellTemp.setCellStyle(style);
} }
} }
return wb; return wb;
......
package com.gic.auth.web.vo; package com.gic.auth.web.vo;
import com.gic.commons.annotation.SkipNamingCheck;
import java.io.Serializable; import java.io.Serializable;
import java.util.Date; import java.util.Date;
...@@ -10,6 +12,7 @@ import java.util.Date; ...@@ -10,6 +12,7 @@ import java.util.Date;
* @author guojuxing
 * @author guojuxing

* @date 2019/11/8 2:15 PM
 * @date 2019/11/8 2:15 PM

*/ */
@SkipNamingCheck
public class LogListVO implements Serializable{ public class LogListVO implements Serializable{
......
package com.gic.auth.web.vo; package com.gic.auth.web.vo;
import com.gic.commons.annotation.SkipNamingCheck;
import java.io.Serializable; import java.io.Serializable;
/** /**
* *
...@@ -8,6 +10,7 @@ import java.io.Serializable; ...@@ -8,6 +10,7 @@ import java.io.Serializable;
* @author zhiwj * @author zhiwj
* @date 2020-09-10 10:03 * @date 2020-09-10 10:03
*/ */
@SkipNamingCheck
public class TestObj implements Serializable{ public class TestObj implements Serializable{
private static final long serialVersionUID = -4882149987195822359L; private static final long serialVersionUID = -4882149987195822359L;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment