/*
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
*/
|
package com.megatim.fdxcommons.model.pojo;
|
|
import com.megatim.fdxcommons.model.enumeration.OrderByType;
|
import lombok.Getter;
|
import lombok.Setter;
|
|
/**
|
*
|
* @author ASUS
|
*/
|
@Getter
|
@Setter
|
public class OrderByDefinition {
|
|
private String fieldName;
|
|
private OrderByType orderByType = OrderByType.ASC;
|
|
public OrderByDefinition(String fieldName, OrderByType orderByType) {
|
this.fieldName = fieldName;
|
this.orderByType = orderByType;
|
}
|
|
public OrderByDefinition(String fieldName) {
|
this.fieldName = fieldName;
|
}
|
}
|