Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
a10b2bc0
authored
Jan 09, 2024
by
CaIon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 修复数据看板筛选用户的时候不能指定时间的问题
parent
2d584021
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
model/usedata.go
+1
-1
No files found.
model/usedata.go
View file @
a10b2bc0
...
@@ -91,7 +91,7 @@ func SaveQuotaDataCache() {
...
@@ -91,7 +91,7 @@ func SaveQuotaDataCache() {
func
GetQuotaDataByUsername
(
username
string
,
startTime
int64
,
endTime
int64
)
(
quotaData
[]
*
QuotaData
,
err
error
)
{
func
GetQuotaDataByUsername
(
username
string
,
startTime
int64
,
endTime
int64
)
(
quotaData
[]
*
QuotaData
,
err
error
)
{
var
quotaDatas
[]
*
QuotaData
var
quotaDatas
[]
*
QuotaData
// 从quota_data表中查询数据
// 从quota_data表中查询数据
err
=
DB
.
Table
(
"quota_data"
)
.
Where
(
"username = ?
"
,
userna
me
)
.
Find
(
&
quotaDatas
)
.
Error
err
=
DB
.
Table
(
"quota_data"
)
.
Where
(
"username = ?
and created_at >= ? and created_at <= ?"
,
username
,
startTime
,
endTi
me
)
.
Find
(
&
quotaDatas
)
.
Error
return
quotaDatas
,
err
return
quotaDatas
,
err
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment