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

pers.zr.opensource.magic.dao.order.Order Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package pers.zr.opensource.magic.dao.order;

import pers.zr.opensource.magic.dao.constants.OrderType;

/**
 * Created by zhurong on 2016-5-10.
 */
public class Order {

    private String column;

    private OrderType type;

    public Order(String column, OrderType type) {
        this.column = column;
        this.type = type;
    }

    public String getColumn() {
        return column;
    }

    public OrderType getType() {
        return type;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy