Blame view

src/main/java/com/jevon/model/Teacher.java 871 Bytes
36ff5663   陈杰   first
1
2
package com.jevon.model;

7fee3c23   陈杰   redis
3
4
import java.io.Serializable;

36ff5663   陈杰   first
5
6
7
8
9
/**
 * @author chen
 * @version 1.0
 * @date 2019/10/9 0009 13:53
 */
7fee3c23   陈杰   redis
10
public class Teacher implements Serializable {
36ff5663   陈杰   first
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
37
38
39
40
41
42
43
44
45
46
47
48

    private int id ;
    private int schoolId ;
    private int teacherId ;
    private String teacherName ;

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public int getSchoolId() {
        return schoolId;
    }

    public void setSchoolId(int schoolId) {
        this.schoolId = schoolId;
    }

    public int getTeacherId() {
        return teacherId;
    }

    public void setTeacherId(int teacherId) {
        this.teacherId = teacherId;
    }

    public String getTeacherName() {
        return teacherName;
    }

    public void setTeacherName(String teacherName) {
        this.teacherName = teacherName;
    }
}