package com.ruoyi.staff.dto;
|
|
import lombok.Data;
|
|
import java.util.Date;
|
|
|
@Data
|
public class StaffOnJobDto {
|
private Long id;
|
private String staffNo;
|
private String staffName;
|
|
//原岗位
|
private String originPost;
|
|
//新岗位
|
private String targetPost;
|
|
/**
|
* 调岗日期
|
*/
|
private Date transferDate;
|
|
/**
|
* 调岗类型
|
*/
|
private String transferType;
|
|
/**
|
* 调岗原因
|
*/
|
private String transferReason;
|
|
|
}
|