You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

128 lines
3.7 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.yanzhen.entity;
import javax.validation.constraints.NotNull;
import org.hibernate.validator.constraints.Length;
import com.yanzhen.utils.Entity;
import java.util.Date;
public class Visit extends Entity{// 定义一个名为Visit的类继承自Entity类
private Integer id;// 定义一个私有的Integer类型的变量id
@Length(max = 100)// 定义一个私有的String类型的变量visitor并设置其最大长度为100
private String visitor;
@Length(max = 100)// 定义一个私有的String类型的变量phone并设置其最大长度为100
private String phone;
private Integer sex; // 定义一个私有的Integer类型的变量sex
@Length(max = 100) // 定义一个私有的String类型的变量idcard并设置其最大长度为100
private String idcard;
private Integer studentId; // 定义一个私有的Integer类型的变量studentId
private Date visitTime; // 定义一个私有的Date类型的变量visitTime
private Date leaveTime;// 定义一个私有的Date类型的变量leaveTime
@Length(max = 200) // 定义一个私有的String类型的变量remark并设置其最大长度为200
private String remark;
private Student student;// 定义一个私有的Student类型的变量student
public Integer getId() {// 定义一个公共方法getId用于获取id的值
return id;
}
public void setId(Integer id) {// 定义一个公共方法setId用于设置id的值
this.id = id;
}
public String getVisitor() {// 定义一个公共方法getVisitor用于获取visitor的值
return visitor;
}
public void setVisitor(String visitor) {// 定义一个公共方法setVisitor用于设置visitor的值
this.visitor = visitor;
}
public String getPhone() {// 定义一个公共方法getPhone用于获取phone的值
return phone;
}
public void setPhone(String phone) {// 定义一个公共方法setPhone用于设置phone的值
this.phone = phone;
}
public Integer getSex() {// 定义一个公共方法getSex用于获取sex的值
return sex;
}
public void setSex(Integer sex) {// 定义一个公共方法setSex用于设置sex的值
this.sex = sex;
}
public String getIdcard() {// 定义一个公共方法getIdcard用于获取idcard的值
return idcard;
}
public void setIdcard(String idcard) {// 定义一个公共方法setIdcard用于设置idcard的值
this.idcard = idcard;
}
public Integer getStudentId() {// 定义一个公共方法getStudentId用于获取studentId的值
return studentId;
}
public void setStudentId(Integer studentId) {// 定义一个公共方法setStudentId用于设置studentId的值
this.studentId = studentId;
}
public Date getVisitTime() {// 定义一个公共方法getVisitTime用于获取visitTime的值
return visitTime;
}
public void setVisitTime(Date visitTime) {// 定义一个公共方法setVisitTime用于设置visitTime的值
this.visitTime = visitTime;
}
public Date getLeaveTime() {// 定义一个公共方法getLeaveTime用于获取leaveTime的值
return leaveTime;
}
public void setLeaveTime(Date leaveTime) {// 定义一个公共方法setLeaveTime用于设置leaveTime的值
this.leaveTime = leaveTime;
}
public String getRemark() {// 定义一个公共方法getRemark用于获取remark的值
return remark;
}
public void setRemark(String remark) {// 定义一个公共方法setRemark用于设置remark的值
this.remark = remark;
}
public Student getStudent() {// 定义一个公共方法getStudent用于获取student的值
return student;
}
public void setStudent(Student student) {// 定义一个公共方法setStudent用于设置student的值
this.student = student;
}
}