🐛修复更新时间筛选选项错误
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,5 +1,5 @@
|
||||
/idea/
|
||||
/vscode/
|
||||
/.idea/
|
||||
/.vscode/
|
||||
/data/
|
||||
/logs/
|
||||
/lastupdate.tmp
|
||||
|
||||
8
.idea/.gitignore
generated
vendored
8
.idea/.gitignore
generated
vendored
@@ -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
9
.idea/merchant.iml
generated
@@ -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
8
.idea/modules.xml
generated
@@ -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
6
.idea/vcs.xml
generated
@@ -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>
|
||||
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
// 计算分页数
|
||||
|
||||
Reference in New Issue
Block a user