All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ars.file.query.condition.Order Maven / Gradle / Ivy

There is a newer version: 2.0.6
Show newest version
package ars.file.query.condition;

import ars.file.Describe.Property;
import ars.file.query.condition.Condition;

/**
 * 排序条件
 * 
 * @author yongqiangwu
 *
 */
public class Order implements Condition {
	private Property property; // 排序属性

	public Order(Property property) {
		this.property = property;
	}

	public Property getProperty() {
		return property;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy