25 lines
536 B
Go
25 lines
536 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 //无感
|
||
|
)
|