This commit is contained in:
Juyounglee95
2020-04-22 13:39:41 +09:00
commit 8ab6d253d8
36 changed files with 956 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package library.external;
public class PointSystem {
private Long id;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
}