Commit bd1b4552 by guojuxing

pmd

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

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

*/
@SkipNamingCheck
public class LogListVO implements Serializable{
......
package com.gic.auth.web.vo;
import com.gic.commons.annotation.SkipNamingCheck;
import java.io.Serializable;
/**
*
......@@ -8,6 +10,7 @@ import java.io.Serializable;
* @author zhiwj
* @date 2020-09-10 10:03
*/
@SkipNamingCheck
public class TestObj implements Serializable{
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