Files
leanote/app/info/common.go
2014-05-07 13:06:24 +08:00

12 lines
135 B
Go

package info
import (
)
// 分页数据
type Page struct {
CurPage int // 当前页码
TotalPage int // 总页
List interface{}
}