代码拉取完成,页面将自动刷新
package wrapper
import "strings"
// Time 时间范围
type Time struct {
Range[int64]
}
func (t *Time) Adjust() {
if t.Min > t.Max {
tt := t.Min
t.Max = t.Min
t.Min = tt
}
}
func (t *Time) RangeLegal(legal int64) {
t.Adjust()
if t.Max-t.Min > legal {
t.Min = t.Max - legal
if t.Min < 0 {
t.Min = 0
}
}
}
type Time2 struct {
TimCol string `form:"time_col" json:"time_col"`
TimOp string `form:"time_op" json:"time_op"`
Start int64 `form:"start" json:"start"`
End int64 `form:"end" json:"end"`
}
func (t *Time2) HasValid() bool {
// 时间有效,操作符长度不能太长,太长就是无效,在进行ToUpper时,造成时间消耗
return len(t.TimOp) < 5
}
func (t *Time2) Cond(cond *Condition) {
if !t.HasValid() {
return
}
op := strings.ToUpper(t.TimOp)
if op == "GT" {
cond.Gt(t.TimCol, t.Start)
} else if op == "GTE" {
cond.GtEq(t.TimCol, t.Start)
} else if op == "LT" {
cond.Lt(t.TimCol, t.End)
} else if op == "LTE" {
cond.LtEq(t.TimCol, t.End)
} else if op == "BET" {
cond.Between(t.TimCol, t.Start, t.End)
}
}
func (t *Time2) Adjust() {
if t.Start > t.End {
tt := t.Start
t.End = t.Start
t.Start = tt
}
}
func (t *Time2) RangeLegal(legal int64) {
t.Adjust()
if t.End-t.Start > legal {
t.Start = t.End - legal
if t.Start < 0 {
t.Start = 0
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。