|
|
|
@ -89,11 +89,11 @@ public abstract class BaseBean implements Serializable {
|
|
|
|
|
public transient String modifyDateTimeEnd;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "排序属性")
|
|
|
|
|
public transient String orderByParam;
|
|
|
|
|
public transient String orderByParam = "";
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "排序属性",example = "1")
|
|
|
|
|
//CommonEnumUtil.ASC_OR_DESC 1 asc,2 desc
|
|
|
|
|
public transient int ascOrDesc;
|
|
|
|
|
public transient int ascOrDesc = 1;
|
|
|
|
|
|
|
|
|
|
//排序方式
|
|
|
|
|
public String orderBy(){
|
|
|
|
@ -109,7 +109,4 @@ public abstract class BaseBean implements Serializable {
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getOrderByParam() {
|
|
|
|
|
return this.orderByParam == null ? "" : this.orderByParam;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|