forked from Eagle-OJ/eagle-oj-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
94b48ad
commit e2ed408
Showing
6 changed files
with
138 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# web static | ||
eagle-oj-web/src/main/resources/public/ | ||
# web create temporary data | ||
/data/ | ||
|
||
# idea | ||
*.iml | ||
.idea/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
eagle-oj-web/src/main/java/com/eagleoj/web/controller/format/index/ImportProblemsFormat.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package com.eagleoj.web.controller.format.index; | ||
|
||
import com.alibaba.fastjson.JSONArray; | ||
|
||
import javax.validation.constraints.NotNull; | ||
|
||
/** | ||
* @author Smith | ||
**/ | ||
public class ImportProblemsFormat { | ||
|
||
@NotNull | ||
private JSONArray pidList; | ||
|
||
public JSONArray getPidList() { | ||
return pidList; | ||
} | ||
|
||
public void setPidList(JSONArray pidList) { | ||
this.pidList = pidList; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.