CreateScheduleReqVo.java
677 Bytes
package com.jevon.vo.req;
/**
* @author chen
* @version 1.0
* @date 2019/10/14 0014 8:24
*/
public class CreateScheduleReqVo {
private int schoolId ;
private String team ;
private String scheduleName ;
public int getSchoolId() {
return schoolId;
}
public void setSchoolId(int schoolId) {
this.schoolId = schoolId;
}
public String getTeam() {
return team;
}
public void setTeam(String team) {
this.team = team;
}
public String getScheduleName() {
return scheduleName;
}
public void setScheduleName(String scheduleName) {
this.scheduleName = scheduleName;
}
}