这里主要用到golang的sort.Sort方法,先看这个函数的简介:
介绍链接:https://books.studygolang.com/The-Golang-Standard-Library-by-Example/chapter03/03.1.html
如何实现:
import "sort"
// UserInfo 用户信息结构体
type UserInfo struct {
UserId string `gorm:"column:user_id" json:"user_id"`
UserName string `gorm:"column:user_name" json:"user_name"`
UserRole int32 `gorm:"column:user_role" json:"user_role"`
CreateTime int64 `gorm:"column:create_time;autoCreateTime" json:"create_time"`
}
func main() {
var userList = make([]UserInfo,0)
//....插入数据,此处忽略
//实现排序
sort.Sort(ByCreateTime(userList))
}
//通过对CreateTime字段升序排序实现了sort.Interface接口
type ByCreateTime []UserInfo
// Len
func (a ByCreateTime) Len() int { return len(a) }
// Less 根据CreateTime创建时间 升序排序
func (a ByCreateTime) Less(i, j int) bool { return a[i].CreateTime < a[j].CreateTime }
// Swap
func (a ByCreateTime) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
若有其他更简便的方法,欢迎留言讨论