top.lingkang.mm.page.PageSqlInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-magic Show documentation
Show all versions of mybatis-magic Show documentation
mybatis能力扩展框架,兼顾mybatis的mapper.xml编写操作数据库。
The newest version!
package top.lingkang.mm.page;
import lombok.Data;
/**
* @author lingkang
* Created by 2024/3/3
*/
@Data
public class PageSqlInfo {
// 分页查询统计个数的sql
private String countSql;
// 分页查询的sql
private String selectSql;
}