37 lines
958 B
Go
Executable File
37 lines
958 B
Go
Executable File
package taskcenter
|
||
|
||
const (
|
||
// Task Windows
|
||
WindowDaily = "daily"
|
||
WindowWeekly = "weekly"
|
||
WindowMonthly = "monthly"
|
||
WindowLifetime = "lifetime"
|
||
WindowActivityPeriod = "activity_period" // 任务有效期内(使用 task.StartTime ~ task.EndTime)
|
||
WindowSinceRegistration = "since_registration" // 注册以来(不限制)
|
||
|
||
// Task Metrics
|
||
MetricFirstOrder = "first_order"
|
||
MetricOrderCount = "order_count"
|
||
MetricOrderAmount = "order_amount"
|
||
MetricInviteCount = "invite_count"
|
||
|
||
// Operators
|
||
OperatorGTE = ">="
|
||
OperatorEQ = "="
|
||
|
||
// Reward Types
|
||
RewardTypePoints = "points"
|
||
RewardTypeGameTicket = "game_ticket"
|
||
RewardTypeCoupon = "coupon"
|
||
RewardTypeItemCard = "item_card"
|
||
RewardTypeTitle = "title"
|
||
|
||
// Event Sources
|
||
SourceTypeOrder = "order"
|
||
SourceTypeInvite = "invite"
|
||
SourceTypeTaskCenter = "task_center"
|
||
|
||
// Event Log Status
|
||
EventStatusGranted = "granted"
|
||
)
|