dashboard
repositories
filestore
activity
search
login
main
/
multi_system
多体系后端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
新增功能
“djh”
5 days ago
b0be631d7800b2a35c4dfeb9332877946e361829
[multi_system.git]
/
multi-common
/
src
/
main
/
java
/
com
/
gkhy
/
exam
/
common
/
api
/
ImportResult.java
1
2
3
4
5
6
7
8
9
10
11
12
package com.gkhy.exam.common.api;
import lombok.Data;
import java.util.List;
@Data
public class ImportResult {
private Integer successCount;
private Integer failCount;
private List<String> errorMessages;
}