ExtSort.java
package com.mycim.valueobject.common;
import java.io.Serializable;
/**
* @author songpy
* @version 1.0.0
* @date 2021/1/14
**/
public class ExtSort implements Serializable {
private static final long serialVersionUID = -2860264061886415755L;
private String property;
private String direction;
@Override
public String toString() {
return "ExtSort{" + "property='" + property + '\'' + ", direction='" + direction + '\'' + '}';
}
public String getProperty() {
return property;
}
public void setProperty(String property) {
this.property = property;
}
public String getDirection() {
return direction;
}
public void setDirection(String direction) {
this.direction = direction;
}
}