🐛修复更新时间筛选选项错误

This commit is contained in:
孙晓龙
2024-01-15 13:58:55 +08:00
parent 1506c47a44
commit b92be7d16c
9 changed files with 3 additions and 54 deletions

BIN
.DS_Store vendored

Binary file not shown.

4
.gitignore vendored
View File

@@ -1,5 +1,5 @@
/idea/
/vscode/
/.idea/
/.vscode/
/data/
/logs/
/lastupdate.tmp

8
.idea/.gitignore generated vendored
View File

@@ -1,8 +0,0 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

9
.idea/merchant.iml generated
View File

@@ -1,9 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="Go" enabled="true" />
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

8
.idea/modules.xml generated
View File

@@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/merchant.iml" filepath="$PROJECT_DIR$/.idea/merchant.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml generated
View File

@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

@@ -1,15 +1,5 @@
package controllers
/***************************************************
** @Desc : This file for 用户登录
** @Time : 19.11.29 13:52
** @Author : Joker
** @File : login
** @Last Modified by : Joker
** @Last Modified time: 19.11.29 13:52
** @Software: GoLand
****************************************************/
import (
"fmt"
beego "github.com/beego/beego/v2/server/web"

View File

@@ -1,15 +1,5 @@
package controllers
/***************************************************
** @Desc : This file for 批量提现
** @Time : 19.12.6 17:07
** @Author : Joker
** @File : multi_withdraw
** @Last Modified by : Joker
** @Last Modified time: 19.12.6 17:07
** @Software: GoLand
****************************************************/
import (
"fmt"
"github.com/rs/xid"

View File

@@ -69,7 +69,7 @@ func (c *TradeRecord) TradeQueryAndListPage() {
in["update_time__gte"] = start
}
if end != "" {
in["update_time_lte"] = end
in["update_time__lte"] = end
}
// 计算分页数