1 Star 0 Fork 0

h79/goutils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
time.go 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
huqiuyun 提交于 2023-01-15 01:52 . time
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
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/h79/goutils.git
git@gitee.com:h79/goutils.git
h79
goutils
goutils
v1.3.48

搜索帮助