123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485 |
- package com.ruoyi.system.domain;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- /**
- * 学生档案信息对象 student_info
- *
- * @author ruoyi
- * @date 2023-07-21
- */
- public class StudentInfo extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** ID */
- private Long id;
- /** 学生id(家长-学生(审核通过之后数据)表id) */
- @Excel(name = "学生id", readConverterExp = "家=长-学生(审核通过之后数据)表id")
- private Long studentId;
- /** 姓名 */
- @Excel(name = "姓名")
- private String name;
- /** 性别(1:男,2:女) */
- @Excel(name = "性别(1:男,2:女)")
- private String sex;
- /** 年龄 */
- @Excel(name = "年龄")
- private String age;
- /** 学校 */
- @Excel(name = "学校")
- private String school;
- /** 学号 */
- @Excel(name = "学号")
- private String studentNumber;
- /** 身份证号 */
- @Excel(name = "身份证号")
- private String idCard;
- /** 身高 */
- @Excel(name = "身高")
- private String height;
- /** 体重 */
- @Excel(name = "体重")
- private String weight;
- /** 血型 */
- @Excel(name = "血型")
- private String bloodType;
- /** 政治面貌 */
- @Excel(name = "政治面貌")
- private String politicalStatus;
- /** 证件照(地址) */
- @Excel(name = "证件照(地址)")
- private String identificationPhoto;
- /** 门禁照(地址) */
- @Excel(name = "门禁照(地址)")
- private String entrancePermit;
- /** 父亲 */
- @Excel(name = "父亲")
- private String fatherName;
- /** 父亲联系方式 */
- @Excel(name = "父亲联系方式")
- private String fatherTelephone;
- /** 母亲 */
- @Excel(name = "母亲")
- private String motherName;
- /** 母亲联系方式 */
- @Excel(name = "母亲联系方式")
- private String motherTelephone;
- /** 居住地址 */
- @Excel(name = "s")
- private String address;
- /** 是否近视(1:是,2:否) */
- private String isNearsightedness;
- /** 近视度数 */
- private String degreeMyopia;
- /** 健康状况 */
- private String health;
- /** 心理状况 */
- private String mind;
- /** 经度 */
- private String longitude;
- /** 纬度 */
- private String latitude;
- /** 有无过往病史(1:有,2:无) */
- private String isMedicalHistory;
- /** 病史描述 */
- private String medicalDescription;
- /** 心理健康描述 */
- private String psychologicalDescription;
- /** 留守儿童(1:是,2:否) */
- private String isLset;
- /** 是否贫困(1:是,2:否) */
- private String isPoverty;
- /** 紧急联系人 */
- private String emergencyContact;
- /** 紧急联系人手机号 */
- private String emergencyContactTelephone;
- /** 名族 */
- private String familyName;
- /** 是否远视(1:是,2:否) */
- private String isFarsightedness;
- /** 远视度数 */
- private String farsightedness;
- private String classId;
- private Long parentsId;
- public String getFamilyName() {
- return familyName;
- }
- public String getIsFarsightedness() {
- return isFarsightedness;
- }
- public String getFarsightedness() {
- return farsightedness;
- }
- public void setFamilyName(String familyName) {
- this.familyName = familyName;
- }
- public void setIsFarsightedness(String isFarsightedness) {
- this.isFarsightedness = isFarsightedness;
- }
- public void setFarsightedness(String farsightedness) {
- this.farsightedness = farsightedness;
- }
- public String getEmergencyContact() {
- return emergencyContact;
- }
- public String getEmergencyContactTelephone() {
- return emergencyContactTelephone;
- }
- public void setEmergencyContact(String emergencyContact) {
- this.emergencyContact = emergencyContact;
- }
- public void setEmergencyContactTelephone(String emergencyContactTelephone) {
- this.emergencyContactTelephone = emergencyContactTelephone;
- }
- public Long getParentsId() {
- return parentsId;
- }
- public void setParentsId(Long parentsId) {
- this.parentsId = parentsId;
- }
- public void setIsLset(String isLset) {
- this.isLset = isLset;
- }
- public void setIsPoverty(String isPoverty) {
- this.isPoverty = isPoverty;
- }
- public String getIsLset() {
- return isLset;
- }
- public String getIsPoverty() {
- return isPoverty;
- }
- public void setIsMedicalHistory(String isMedicalHistory) {
- this.isMedicalHistory = isMedicalHistory;
- }
- public void setMedicalDescription(String medicalDescription) {
- this.medicalDescription = medicalDescription;
- }
- public void setPsychologicalDescription(String psychologicalDescription) {
- this.psychologicalDescription = psychologicalDescription;
- }
- public String getIsMedicalHistory() {
- return isMedicalHistory;
- }
- public String getMedicalDescription() {
- return medicalDescription;
- }
- public String getPsychologicalDescription() {
- return psychologicalDescription;
- }
- public String getIsNearsightedness() {
- return isNearsightedness;
- }
- public String getDegreeMyopia() {
- return degreeMyopia;
- }
- public String getHealth() {
- return health;
- }
- public String getMind() {
- return mind;
- }
- public String getLongitude() {
- return longitude;
- }
- public String getLatitude() {
- return latitude;
- }
- public void setIsNearsightedness(String isNearsightedness) {
- this.isNearsightedness = isNearsightedness;
- }
- public void setDegreeMyopia(String degreeMyopia) {
- this.degreeMyopia = degreeMyopia;
- }
- public void setHealth(String health) {
- this.health = health;
- }
- public void setMind(String mind) {
- this.mind = mind;
- }
- public void setLongitude(String longitude) {
- this.longitude = longitude;
- }
- public void setLatitude(String latitude) {
- this.latitude = latitude;
- }
- public String getClassId() {
- return classId;
- }
- public void setClassId(String classId) {
- this.classId = classId;
- }
- public void setId(Long id)
- {
- this.id = id;
- }
- public Long getId()
- {
- return id;
- }
- public void setStudentId(Long studentId)
- {
- this.studentId = studentId;
- }
- public Long getStudentId()
- {
- return studentId;
- }
- public void setName(String name)
- {
- this.name = name;
- }
- public String getName()
- {
- return name;
- }
- public void setSex(String sex)
- {
- this.sex = sex;
- }
- public String getSex()
- {
- return sex;
- }
- public void setAge(String age)
- {
- this.age = age;
- }
- public String getAge()
- {
- return age;
- }
- public void setSchool(String school)
- {
- this.school = school;
- }
- public String getSchool()
- {
- return school;
- }
- public void setStudentNumber(String studentNumber)
- {
- this.studentNumber = studentNumber;
- }
- public String getStudentNumber()
- {
- return studentNumber;
- }
- public void setIdCard(String idCard)
- {
- this.idCard = idCard;
- }
- public String getIdCard()
- {
- return idCard;
- }
- public void setHeight(String height)
- {
- this.height = height;
- }
- public String getHeight()
- {
- return height;
- }
- public void setWeight(String weight)
- {
- this.weight = weight;
- }
- public String getWeight()
- {
- return weight;
- }
- public void setBloodType(String bloodType)
- {
- this.bloodType = bloodType;
- }
- public String getBloodType()
- {
- return bloodType;
- }
- public void setPoliticalStatus(String politicalStatus)
- {
- this.politicalStatus = politicalStatus;
- }
- public String getPoliticalStatus()
- {
- return politicalStatus;
- }
- public void setIdentificationPhoto(String identificationPhoto)
- {
- this.identificationPhoto = identificationPhoto;
- }
- public String getIdentificationPhoto()
- {
- return identificationPhoto;
- }
- public void setEntrancePermit(String entrancePermit)
- {
- this.entrancePermit = entrancePermit;
- }
- public String getEntrancePermit()
- {
- return entrancePermit;
- }
- public void setFatherName(String fatherName)
- {
- this.fatherName = fatherName;
- }
- public String getFatherName()
- {
- return fatherName;
- }
- public void setFatherTelephone(String fatherTelephone)
- {
- this.fatherTelephone = fatherTelephone;
- }
- public String getFatherTelephone()
- {
- return fatherTelephone;
- }
- public void setMotherName(String motherName)
- {
- this.motherName = motherName;
- }
- public String getMotherName()
- {
- return motherName;
- }
- public void setMotherTelephone(String motherTelephone)
- {
- this.motherTelephone = motherTelephone;
- }
- public String getMotherTelephone()
- {
- return motherTelephone;
- }
- public void setAddress(String address)
- {
- this.address = address;
- }
- public String getAddress()
- {
- return address;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("studentId", getStudentId())
- .append("name", getName())
- .append("sex", getSex())
- .append("age", getAge())
- .append("school", getSchool())
- .append("studentNumber", getStudentNumber())
- .append("idCard", getIdCard())
- .append("height", getHeight())
- .append("weight", getWeight())
- .append("bloodType", getBloodType())
- .append("politicalStatus", getPoliticalStatus())
- .append("identificationPhoto", getIdentificationPhoto())
- .append("entrancePermit", getEntrancePermit())
- .append("fatherName", getFatherName())
- .append("fatherTelephone", getFatherTelephone())
- .append("motherName", getMotherName())
- .append("motherTelephone", getMotherTelephone())
- .append("address", getAddress())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .append("remark", getRemark())
- .toString();
- }
- }
|