liulin
2024-07-30 ce04dfcdd664df7e791a63800cab2cd2d12e878c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.lunhan.xxx.entity.dto;
 
public class OrderByDTO {
    /**
     * 排序字段枚举(支持的枚举值请参照字段“ orderByEnum”说明中的枚举类型,无特殊说明使用通用排序枚举,“EOrderBy”)
     */
    private Integer orderBy;
    /**
     * 是否升序排序 true=升序,不传或者其他任意值=降序(默认)
     */
    private Boolean isAsc;
 
    public Integer getOrderBy() {
        return orderBy;
    }
 
    public void setOrderBy(Integer orderBy) {
        this.orderBy = orderBy;
    }
 
    public Boolean getIsAsc() {
        return isAsc;
    }
 
    public void setIsAsc(Boolean asc) {
        isAsc = asc;
    }
}