go_dreamfactory/modules/buried/core.go
2023-06-01 16:27:23 +08:00

38 lines
456 B
Go

package buried
const (
//创号后入录数据
rtype1 = 1
//接任务后入录数据
rtype2 = 2
)
const (
//覆盖
cover = 1
//累加
overlay = 2
//统计
statistics = 3
)
const (
eq = "eq" // ==
gt = "gt" // >
gte = "gte" //>=
lt = "lt" // <
lte = "lte" // <=
ne = "ne" // !=
)
const (
//一次性任务
ctype_once = 1
//重复性任务
ctype_repeat = 2
//日常任务
ctype_daily = 3
//周长任务
ctype_weekly = 4
)