32 lines
359 B
Go
32 lines
359 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 (
|
|
//任务完成自动锁定
|
|
autolock = 1
|
|
)
|