package com.lunhan.xxx.entity.dto;
|
|
import java.util.Map;
|
|
public class RequestDTO {
|
private Map<String, String> requestDataMap;
|
private String businessCode;
|
private String approveCode;
|
private String conditionColumn;
|
private Long conditionValue;
|
private Long creator_id;
|
private String creator_name;
|
private Long listAppRover;
|
private Integer applyStatus;
|
private Long id;
|
private String comment;
|
private Integer type;
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public String getComment() {
|
return comment;
|
}
|
|
public void setComment(String comment) {
|
this.comment = comment;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Integer getApplyStatus() {
|
return applyStatus;
|
}
|
|
public void setApplyStatus(Integer applyStatus) {
|
this.applyStatus = applyStatus;
|
}
|
|
public Long getListAppRover() {
|
return listAppRover;
|
}
|
|
public void setListAppRover(Long listAppRover) {
|
this.listAppRover = listAppRover;
|
}
|
|
public Long getCreator_id() {
|
return creator_id;
|
}
|
|
public void setCreator_id(Long creator_id) {
|
this.creator_id = creator_id;
|
}
|
|
public String getCreator_name() {
|
return creator_name;
|
}
|
|
public void setCreator_name(String creator_name) {
|
this.creator_name = creator_name;
|
}
|
|
public String getConditionColumn() {
|
return conditionColumn;
|
}
|
|
public void setConditionColumn(String conditionColumn) {
|
this.conditionColumn = conditionColumn;
|
}
|
|
public Long getConditionValue() {
|
return conditionValue;
|
}
|
|
public void setConditionValue(Long conditionValue) {
|
this.conditionValue = conditionValue;
|
}
|
|
public String getApproveCode() {
|
return approveCode;
|
}
|
|
public void setApproveCode(String approveCode) {
|
this.approveCode = approveCode;
|
}
|
|
public Map<String, String> getRequestDataMap() {
|
return requestDataMap;
|
}
|
|
public void setRequestDataMap(Map<String, String> requestDataMap) {
|
this.requestDataMap = requestDataMap;
|
}
|
|
public String getBusinessCode() {
|
return businessCode;
|
}
|
|
public void setBusinessCode(String businessCode) {
|
this.businessCode = businessCode;
|
}
|
}
|