mirror of
https://github.com/astaxie/beego.git
synced 2025-06-12 09:50:39 +00:00
Fixed bug when all "time.Time" params in raw sql queries formatted as time
This commit is contained in:
@ -147,8 +147,10 @@ outFor:
|
||||
arg = v.In(tz).Format(formatDate)
|
||||
} else if fi != nil && fi.fieldType == TypeDateTimeField {
|
||||
arg = v.In(tz).Format(formatDateTime)
|
||||
} else {
|
||||
} else if fi != nil && fi.fieldType == TypeTimeField {
|
||||
arg = v.In(tz).Format(formatTime)
|
||||
} else {
|
||||
arg = v.In(tz).Format(formatDateTime)
|
||||
}
|
||||
} else {
|
||||
typ := val.Type()
|
||||
|
Reference in New Issue
Block a user