Files
leanote/app/info/common.go

12 lines
135 B
Go
Raw Normal View History

2014-05-07 13:06:24 +08:00
package info
import (
)
// 分页数据
type Page struct {
CurPage int // 当前页码
TotalPage int // 总页
List interface{}
}