|
|
|
@ -56,11 +56,11 @@ public abstract class BaseBean implements Serializable {
|
|
|
|
|
@ApiParam(value = "有效性",example = "1")
|
|
|
|
|
public Integer isValid; //EnumUtil.isValid;
|
|
|
|
|
|
|
|
|
|
@Column(name="create_user")
|
|
|
|
|
@Column(name="create_user",updatable = false)
|
|
|
|
|
@ApiParam(value = "创建用户")
|
|
|
|
|
public String createUser;
|
|
|
|
|
|
|
|
|
|
@Column(name="create_date")
|
|
|
|
|
@Column(name="create_date",updatable = false)
|
|
|
|
|
@ApiParam(value = "创建日期")
|
|
|
|
|
public String createDatetime;
|
|
|
|
|
|
|
|
|
@ -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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|