我是从Java转Go的,我想请问一下PaginationResult<List<DatabaseVO>>这种形式的类型在Go中是如何写的

wangchangsong · · 1078 次点击
结构体中data类型为interface就可以了
#1
更多评论
go 没有泛型。。。
#2
type PaginationResult struct { List []DatabaseVO } type DatabaseVO struct { Id string Name string } 感觉没毛病。。
#3