com.circustar.mybatis_accessor.model.QueryHavingModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-accessor Show documentation
Show all versions of mybatis-accessor Show documentation
enhancement based on mybatis plus
The newest version!
package com.circustar.mybatis_accessor.model;
import com.circustar.mybatis_accessor.annotation.dto.QueryHaving;
public class QueryHavingModel {
private String expression;
public QueryHavingModel(String expression) {
this.expression = expression;
}
public QueryHavingModel(QueryHaving queryHaving) {
this(queryHaving.expression());
}
public String getExpression() {
return expression;
}
public void setExpression(String expression) {
this.expression = expression;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy