|
@@ -52,7 +52,7 @@ public class EasArcTlsStudents implements Serializable {
|
|
* @mbg.generated
|
|
* @mbg.generated
|
|
*/
|
|
*/
|
|
@Schema(description = "学生出生日期")
|
|
@Schema(description = "学生出生日期")
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
|
|
private Date birthdate;
|
|
private Date birthdate;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -85,7 +85,7 @@ public class EasArcTlsStudents implements Serializable {
|
|
* @mbg.generated
|
|
* @mbg.generated
|
|
*/
|
|
*/
|
|
@Schema(description = "学生入学进入培训班日期")
|
|
@Schema(description = "学生入学进入培训班日期")
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
|
|
private Date enrollmentDate;
|
|
private Date enrollmentDate;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -94,7 +94,7 @@ public class EasArcTlsStudents implements Serializable {
|
|
* @mbg.generated
|
|
* @mbg.generated
|
|
*/
|
|
*/
|
|
@Schema(description = "学生在培训班毕业日期")
|
|
@Schema(description = "学生在培训班毕业日期")
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
|
|
private Date graduationDate;
|
|
private Date graduationDate;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -135,7 +135,7 @@ public class EasArcTlsStudents implements Serializable {
|
|
* @mbg.generated
|
|
* @mbg.generated
|
|
*/
|
|
*/
|
|
@Schema(description = "创建时间")
|
|
@Schema(description = "创建时间")
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
|
|
private Date createTime;
|
|
private Date createTime;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -144,7 +144,7 @@ public class EasArcTlsStudents implements Serializable {
|
|
* @mbg.generated
|
|
* @mbg.generated
|
|
*/
|
|
*/
|
|
@Schema(description = "修改时间")
|
|
@Schema(description = "修改时间")
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
|
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone = "GMT+8")
|
|
private Date modifyTime;
|
|
private Date modifyTime;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -186,7 +186,7 @@ public class EasArcTlsStudents implements Serializable {
|
|
}
|
|
}
|
|
|
|
|
|
public void setArchiveNumber(String archiveNumber) {
|
|
public void setArchiveNumber(String archiveNumber) {
|
|
- this.archiveNumber = archiveNumber;
|
|
|
|
|
|
+ this.archiveNumber = archiveNumber == null ? null : archiveNumber.trim();
|
|
}
|
|
}
|
|
|
|
|
|
public String getStudentNumber() {
|
|
public String getStudentNumber() {
|
|
@@ -194,7 +194,7 @@ public class EasArcTlsStudents implements Serializable {
|
|
}
|
|
}
|
|
|
|
|
|
public void setStudentNumber(String studentNumber) {
|
|
public void setStudentNumber(String studentNumber) {
|
|
- this.studentNumber = studentNumber;
|
|
|
|
|
|
+ this.studentNumber = studentNumber == null ? null : studentNumber.trim();
|
|
}
|
|
}
|
|
|
|
|
|
public String getStudentName() {
|
|
public String getStudentName() {
|
|
@@ -202,7 +202,7 @@ public class EasArcTlsStudents implements Serializable {
|
|
}
|
|
}
|
|
|
|
|
|
public void setStudentName(String studentName) {
|
|
public void setStudentName(String studentName) {
|
|
- this.studentName = studentName;
|
|
|
|
|
|
+ this.studentName = studentName == null ? null : studentName.trim();
|
|
}
|
|
}
|
|
|
|
|
|
public String getGender() {
|
|
public String getGender() {
|
|
@@ -210,7 +210,7 @@ public class EasArcTlsStudents implements Serializable {
|
|
}
|
|
}
|
|
|
|
|
|
public void setGender(String gender) {
|
|
public void setGender(String gender) {
|
|
- this.gender = gender;
|
|
|
|
|
|
+ this.gender = gender == null ? null : gender.trim();
|
|
}
|
|
}
|
|
|
|
|
|
public Date getBirthdate() {
|
|
public Date getBirthdate() {
|
|
@@ -226,7 +226,7 @@ public class EasArcTlsStudents implements Serializable {
|
|
}
|
|
}
|
|
|
|
|
|
public void setAddress(String address) {
|
|
public void setAddress(String address) {
|
|
- this.address = address;
|
|
|
|
|
|
+ this.address = address == null ? null : address.trim();
|
|
}
|
|
}
|
|
|
|
|
|
public String getPhone() {
|
|
public String getPhone() {
|
|
@@ -234,7 +234,7 @@ public class EasArcTlsStudents implements Serializable {
|
|
}
|
|
}
|
|
|
|
|
|
public void setPhone(String phone) {
|
|
public void setPhone(String phone) {
|
|
- this.phone = phone;
|
|
|
|
|
|
+ this.phone = phone == null ? null : phone.trim();
|
|
}
|
|
}
|
|
|
|
|
|
public String getEmail() {
|
|
public String getEmail() {
|
|
@@ -242,7 +242,7 @@ public class EasArcTlsStudents implements Serializable {
|
|
}
|
|
}
|
|
|
|
|
|
public void setEmail(String email) {
|
|
public void setEmail(String email) {
|
|
- this.email = email;
|
|
|
|
|
|
+ this.email = email == null ? null : email.trim();
|
|
}
|
|
}
|
|
|
|
|
|
public Date getEnrollmentDate() {
|
|
public Date getEnrollmentDate() {
|
|
@@ -274,7 +274,7 @@ public class EasArcTlsStudents implements Serializable {
|
|
}
|
|
}
|
|
|
|
|
|
public void setMajor(String major) {
|
|
public void setMajor(String major) {
|
|
- this.major = major;
|
|
|
|
|
|
+ this.major = major == null ? null : major.trim();
|
|
}
|
|
}
|
|
|
|
|
|
public String getMinor() {
|
|
public String getMinor() {
|
|
@@ -282,7 +282,7 @@ public class EasArcTlsStudents implements Serializable {
|
|
}
|
|
}
|
|
|
|
|
|
public void setMinor(String minor) {
|
|
public void setMinor(String minor) {
|
|
- this.minor = minor;
|
|
|
|
|
|
+ this.minor = minor == null ? null : minor.trim();
|
|
}
|
|
}
|
|
|
|
|
|
public String getUniversity() {
|
|
public String getUniversity() {
|
|
@@ -290,7 +290,7 @@ public class EasArcTlsStudents implements Serializable {
|
|
}
|
|
}
|
|
|
|
|
|
public void setUniversity(String university) {
|
|
public void setUniversity(String university) {
|
|
- this.university = university;
|
|
|
|
|
|
+ this.university = university == null ? null : university.trim();
|
|
}
|
|
}
|
|
|
|
|
|
public Date getCreateTime() {
|
|
public Date getCreateTime() {
|