离职管理

This commit is contained in:
admin
2024-06-05 23:33:37 +08:00
parent bf50caf042
commit 5c52c9171f
2 changed files with 41 additions and 0 deletions

View File

@@ -157,6 +157,27 @@ public class PlayClerkUserInfoEntity extends BaseEntity<PlayClerkUserInfoEntity>
*/
private String onboardingState;
/**
* 入职时间
*/
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private LocalDateTime entryTime;
/**
* 离职时间
*/
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private LocalDateTime resignationTime;
/**
* 在职天数
*/
private Integer workingHours = 0;
/**
* 是否推荐状态1已推荐0未推荐
*/

View File

@@ -165,4 +165,24 @@ public class PlayClerkUserReturnVo {
private LocalDateTime addTime;
/**
* 入职时间
*/
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private LocalDateTime entryTime;
/**
* 离职时间
*/
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private LocalDateTime resignationTime;
/**
* 在职天数
*/
private Integer workingHours = 0;
}