SortModelResponseDto.java
package com.mycim.apis.eap.dto;
import java.io.Serializable;
/**
* @author songpy
* @date 2021/11/26
**/
public class SortModelResponseDto implements Serializable {
private static final long serialVersionUID = 8021463882955559502L;
private String sorterType;
private String jobType;
public SortModelResponseDto() {
}
public SortModelResponseDto(String sorterType) {
setSorterType(sorterType);
}
public SortModelResponseDto(String sorterType, String jobType) {
setSorterType(sorterType);
setJobType(jobType);
}
public String getSorterType() {
return sorterType;
}
public void setSorterType(String sorterType) {
this.sorterType = sorterType;
}
public String getJobType() {
return jobType;
}
public void setJobType(String jobType) {
this.jobType = jobType;
}
@Override
public String toString() {
return "SortModelResponseDto{" + "sorterType='" + sorterType + '\'' + ", jobType='" + jobType + '\'' + '}';
}
}