service/api/consts/predicate.go

56 lines
996 B
Go
Raw Normal View History

2023-12-21 22:17:40 +08:00
package consts
// footprint谓词
const (
View = 0 //看过
IsViewed = 1 //被看过
)
// account_relation谓词
const (
Follow = 0 //关注
IsFollowed = 1 //被关注
Ignore = 2 //不感兴趣
IsIgnored = 3 //被不感兴趣
Friend = 4 //好友
2023-12-23 22:03:53 +08:00
UnLockWeixinTo = 5 //主语已向宾语解锁微信-已弃用
AbleToAccessWeixinOf = 6 //主语可从宾语处查看微信-已弃用
2023-12-21 22:17:40 +08:00
)
// call_history谓词
const (
Like = 0 //喜欢
TakeNoInterest = 1 //无感
)
2023-12-23 22:03:53 +08:00
// contact_customer_service谓词
const (
ContactCustomerService_FromUser = 0
ContactCustomerService_FromSupportor = 1
)
2024-07-19 17:46:58 +08:00
// Raven_IQ_test 年龄段谓词
const (
Age1 = 1
Age2 = 2
Age3 = 3
Age4 = 4
Age5 = 5
Age6 = 6
Age7 = 7
Age8 = 8
Age9 = 9
Age10 = 10
)
// Raven_IQ_test 智商段谓词
const (
IQSegment1 = 1
IQSegment2 = 2
IQSegment3 = 3
IQSegment4 = 4
IQSegment5 = 5
IQSegment6 = 6
IQSegment7 = 7
)