|
@@ -317,6 +317,7 @@ func (this *EdbSourceStatController) EdbUpdateLog() {
|
|
sortParamReq := this.GetString("SortParam", "")
|
|
sortParamReq := this.GetString("SortParam", "")
|
|
sortType := this.GetString("SortType", "desc")
|
|
sortType := this.GetString("SortType", "desc")
|
|
createTime := this.GetString("CreateTime", "")
|
|
createTime := this.GetString("CreateTime", "")
|
|
|
|
+ updateType, _ := this.GetInt("UpdateType", -1)
|
|
|
|
|
|
pageSize, _ := this.GetInt("PageSize")
|
|
pageSize, _ := this.GetInt("PageSize")
|
|
currentIndex, _ := this.GetInt("CurrentIndex")
|
|
currentIndex, _ := this.GetInt("CurrentIndex")
|
|
@@ -345,7 +346,10 @@ func (this *EdbSourceStatController) EdbUpdateLog() {
|
|
condition += " AND create_time >= ? AND create_time < ?"
|
|
condition += " AND create_time >= ? AND create_time < ?"
|
|
pars = append(pars, createTime, endT.Format(utils.FormatDate))
|
|
pars = append(pars, createTime, endT.Format(utils.FormatDate))
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ if updateType >= 0 {
|
|
|
|
+ condition += " AND update_type =? "
|
|
|
|
+ pars = append(pars, updateType)
|
|
|
|
+ }
|
|
sortStr := ``
|
|
sortStr := ``
|
|
sortParam := ``
|
|
sortParam := ``
|
|
if sortParamReq != `` {
|
|
if sortParamReq != `` {
|