package util type Page interface { Init() GetPageIndex() int GetPageSize() int GetTotal() int SetPageIndex(int) SetPageSize(int) SetTotal(int) }