All Downloads are FREE. Search and download functionalities are using the official Maven repository.

query.Page.kt Maven / Gradle / Ivy

There is a newer version: 1.1.10
Show newest version
package query

/**
 * 分页查询结果类
 * @property totalPage Long 总页数
 * @property totalCount Long 总条数
 * @property data List 一页的数据
 */
data class Page(
    val totalPage: Long = 0,
    val totalCount: Long = 0,
    val data: List = listOf()
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy