service/api/consts/predicate.go

56 lines
996 B
Go

package consts
// footprint谓词
const (
View = 0 //看过
IsViewed = 1 //被看过
)
// account_relation谓词
const (
Follow = 0 //关注
IsFollowed = 1 //被关注
Ignore = 2 //不感兴趣
IsIgnored = 3 //被不感兴趣
Friend = 4 //好友
UnLockWeixinTo = 5 //主语已向宾语解锁微信-已弃用
AbleToAccessWeixinOf = 6 //主语可从宾语处查看微信-已弃用
)
// call_history谓词
const (
Like = 0 //喜欢
TakeNoInterest = 1 //无感
)
// contact_customer_service谓词
const (
ContactCustomerService_FromUser = 0
ContactCustomerService_FromSupportor = 1
)
// 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
)