18 lines
352 B
Java
18 lines
352 B
Java
package com.bwie;
|
|
|
|
|
|
|
|
public class Student {
|
|
private Integer sssss;
|
|
private String name;
|
|
private String type;
|
|
private Integer scope;
|
|
|
|
public Student(java.lang.Integer sssss, String name, String type, Integer scope) {
|
|
this.sssss = sssss;
|
|
this.name = name;
|
|
this.type = type;
|
|
this.scope = scope;
|
|
}
|
|
}
|