package com.rongyichuang.employee.dto.response;
|
|
/**
|
* 员工审核列表条目
|
*/
|
public class EmployeeReviewApplicationResponse {
|
private Long id;
|
private String playerName;
|
private String projectName;
|
private String activityName;
|
private Integer state;
|
private String stateText;
|
private String stateType;
|
private String applyTime;
|
|
public EmployeeReviewApplicationResponse() {
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getPlayerName() {
|
return playerName;
|
}
|
|
public void setPlayerName(String playerName) {
|
this.playerName = playerName;
|
}
|
|
public String getProjectName() {
|
return projectName;
|
}
|
|
public void setProjectName(String projectName) {
|
this.projectName = projectName;
|
}
|
|
public String getActivityName() {
|
return activityName;
|
}
|
|
public void setActivityName(String activityName) {
|
this.activityName = activityName;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
public String getStateText() {
|
return stateText;
|
}
|
|
public void setStateText(String stateText) {
|
this.stateText = stateText;
|
}
|
|
public String getStateType() {
|
return stateType;
|
}
|
|
public void setStateType(String stateType) {
|
this.stateType = stateType;
|
}
|
|
public String getApplyTime() {
|
return applyTime;
|
}
|
|
public void setApplyTime(String applyTime) {
|
this.applyTime = applyTime;
|
}
|
}
|