离职管理
This commit is contained in:
@@ -157,6 +157,27 @@ public class PlayClerkUserInfoEntity extends BaseEntity<PlayClerkUserInfoEntity>
|
|||||||
*/
|
*/
|
||||||
private String onboardingState;
|
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:未推荐)
|
* 是否推荐状态(1:已推荐,0:未推荐)
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -165,4 +165,24 @@ public class PlayClerkUserReturnVo {
|
|||||||
private LocalDateTime addTime;
|
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;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user