From dbbdb8bd29cfbf09c5402c3f118a421c0e8c4c5e Mon Sep 17 00:00:00 2001 From: jiangyong27 Date: Tue, 1 Apr 2025 23:01:49 +0800 Subject: [PATCH] day sort --- common/dao/checkin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/dao/checkin.go b/common/dao/checkin.go index 48c073d..48d4834 100644 --- a/common/dao/checkin.go +++ b/common/dao/checkin.go @@ -89,7 +89,7 @@ func (d *CheckinDao) Query(corpId int64, username, month string, filterException if filterException { tx = tx.Where("exception = ''") } - + tx.Order("day ASC") var u []*model.Checkin tx = tx.Find(&u) if tx.Error != nil {