src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/BaseSearchResultVo.kt
@@ -1,6 +1,7 @@
package cn.flightfeather.supervision.lightshare.vo
import com.fasterxml.jackson.annotation.JsonInclude
import com.github.pagehelper.Page
import io.swagger.annotations.ApiModel
import io.swagger.annotations.ApiModelProperty
@@ -22,7 +23,13 @@
    var totalPage: Int = 1,
    @ApiModelProperty("总记录数")
    var totalCount:Long = 0
)
){
    constructor(p: Page<*>) : this() {
        this.page = p.pageNum
        this.totalPage = p.pages
        this.totalCount = p.total
    }
}
open class DataContent{