me.wuwenbin.modules.mongodb.support.page.PageOrder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of template-modules-mongodb Show documentation
Show all versions of template-modules-mongodb Show documentation
提供对mongo数据源的高级操作,针对多数据源mongo和集群mongo
package me.wuwenbin.modules.mongodb.support.page;
import java.io.Serializable;
/**
* 分页排序对象
* Created by wuwenbin on 2014/11/1
*
* @author wuwenbin
* @since 1.0.0
*/
public class PageOrder implements Serializable {
/**
* 排序字段
*/
protected String orderField;
/**
* 排序方式
*/
protected String orderDirection;
/**
* getters and setters
*/
public String getOrderField() {
return orderField;
}
public void setOrderField(String orderField) {
this.orderField = orderField;
}
public String getOrderDirection() {
return orderDirection;
}
public void setOrderDirection(String orderDirection) {
this.orderDirection = orderDirection;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy