【fix sonar】SuccessAndErrorLines文件
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
|||||||
|
package com.jero.modules.system.entity;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @Author lqt
|
||||||
|
* @Date 2023/4/4 9:29
|
||||||
|
* @Version 1.0
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class SuccessAndErrorLines implements Serializable {
|
||||||
|
/**
|
||||||
|
* 成功条数
|
||||||
|
*/
|
||||||
|
private Integer successLines;
|
||||||
|
/**
|
||||||
|
* 失败条数
|
||||||
|
*/
|
||||||
|
private Integer errorLines;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user