派生自 projectDept/qhighschool

yn147
2023-11-25 63c8bc319fd02d9f39b729f136fb3af01c773de1
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package com.qxueyou.scc.exam.model;
// Generated 2018-3-19 20:40:08 by Hibernate Tools 5.2.8.Final
 
import javax.persistence.Column;
import javax.persistence.Embeddable;
 
/**
 * ExamResultVId generated by hbm2java
 */
@Embeddable
public class ExamResultVId implements java.io.Serializable {
 
    /**
     * UID
     */
    private static final long serialVersionUID = 8692825818826083872L;
    
    @Column(name = "EXAM_BATCH_ID")
    private String examBatchId;
    
    @Column(name = "CLASS_ID")
    private String classId;
    
    @Column(name = "STUDENT_NO")
    private String studentNo;
 
    public ExamResultVId() {
    }
 
    public ExamResultVId(String examBatchId, String classId, String studentNo) {
        this.examBatchId = examBatchId;
        this.classId = classId;
        this.studentNo = studentNo;
    }
    
    
    public String getExamBatchId() {
        return examBatchId;
    }
 
    public void setExamBatchId(String examBatchId) {
        this.examBatchId = examBatchId;
    }
 
    
    public String getStudentNo() {
        return studentNo;
    }
 
    public void setStudentNo(String studentNo) {
        this.studentNo = studentNo;
    }
 
    
    public String getClassId() {
        return this.classId;
    }
 
    public void setClassId(String classId) {
        this.classId = classId;
    }
 
    public boolean equals(Object other) {
        if ((this == other))
            return true;
        if ((other == null))
            return false;
        if (!(other instanceof ExamResultVId))
            return false;
        ExamResultVId castOther = (ExamResultVId) other;
 
        return (
                ((this.getExamBatchId() == castOther.getExamBatchId()) || (this.getExamBatchId() != null
                && castOther.getExamBatchId() != null && this.getExamBatchId().equals(castOther.getExamBatchId())))
        
                && ((this.getStudentNo() == castOther.getStudentNo()) || (this.getStudentNo() != null
                && castOther.getStudentNo() != null && this.getStudentNo().equals(castOther.getStudentNo())))
        
                && ((this.getClassId() == castOther.getClassId()) || (this.getClassId() != null
                && castOther.getClassId() != null && this.getClassId().equals(castOther.getClassId())))
        );
    }
 
    public int hashCode() {
        int result = 17;
        result = 37 * result + (getExamBatchId() == null ? 0 : this.getExamBatchId().hashCode());
        result = 37 * result + (getStudentNo() == null ? 0 : this.getStudentNo().hashCode());
        result = 37 * result + (getClassId() == null ? 0 : this.getClassId().hashCode());
        return result;
    }
}