31 lines
685 B
Go
31 lines
685 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
|
|
)
|