Blame view

src/main/java/com/jevon/vo/req/CreateScheduleReqVo.java 677 Bytes
36ff5663   陈杰   first
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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;
    }
}