Commit 464c1c0b by jiang'yun

修改问题

parent ece5be14
......@@ -9,6 +9,7 @@ import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.NonNull;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
......@@ -116,6 +117,7 @@ public class SchoolTeacherBasicInformation extends BaseEntity {
@Excel(name = "现具备专技资格时间")
// @JsonFormat(pattern = "yyyy-MM-dd")
@TableField("current_professional_title_time")
@DateTimeFormat(pattern = "yyyy-MM")
private Date currentProfessionalTitleTime;
/**
......@@ -131,6 +133,7 @@ public class SchoolTeacherBasicInformation extends BaseEntity {
@Excel(name = "现聘专技资格时间")
// @JsonFormat(pattern = "yyyy-MM-dd")
@TableField("current_hiring_professional_title_time")
@DateTimeFormat(pattern = "yyyy-MM")
private Date currentHiringProfessionalTitleTime;
/**
......@@ -150,7 +153,8 @@ public class SchoolTeacherBasicInformation extends BaseEntity {
* 现岗位等级聘任时间
*/
@Excel(name = "现岗位等级聘任时间")
// @JsonFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM")
@DateTimeFormat(pattern = "yyyy-MM")
private Date currentJobLevelAppointmentTime;
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment