龚焕茏
2024-05-07 49429bad1036c81c056faeadfa009c53ba777fad
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
37
38
39
40
41
42
43
44
45
package com.mindskip.xzs.domain;
 
import io.swagger.models.auth.In;
 
import java.io.Serializable;
 
public class ExamTemplatesSubject implements Serializable {
 
    private Integer id;
    private Integer subjectId;
    private Integer templatesId;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getSubjectId() {
        return subjectId;
    }
 
    public void setSubjectId(Integer subjectId) {
        this.subjectId = subjectId;
    }
 
    public Integer getTemplatesId() {
        return templatesId;
    }
 
    public void setTemplatesId(Integer templatesId) {
        this.templatesId = templatesId;
    }
 
    @Override
    public String toString() {
        return "ExamTemplatesSubject{" +
                "id=" + id +
                ", subjectId=" + subjectId +
                ", templatesId=" + templatesId +
                '}';
    }
}