...
|
...
|
@@ -2,7 +2,7 @@ package com.yoho.datasync.consumer.common; |
|
|
|
|
|
public class ServiceConstant {
|
|
|
|
|
|
public static int[] articleTypes = new int[]{1, 2, 4};//限定文章类型 1-种草用户发布 2-逛资讯 3-mars文章 4-晒单文章 5-now社区;',
|
|
|
public static int[] articleTypes = new int[]{1, 2, 4, 5};//限定文章类型 1-种草用户发布 2-逛资讯 3-mars文章 4-晒单文章 5-now社区;',
|
|
|
|
|
|
public interface SRCCHANNEL_TYPE {
|
|
|
/**
|
...
|
...
|
@@ -14,7 +14,7 @@ public class ServiceConstant { |
|
|
}
|
|
|
|
|
|
|
|
|
public interface Grass_Article_Comment{
|
|
|
public interface Grass_Article_Comment {
|
|
|
/**
|
|
|
* 种草的文章评论状态 (0 待审核,1通过,2未通过)
|
|
|
*/
|
...
|
...
|
@@ -23,7 +23,7 @@ public class ServiceConstant { |
|
|
int NOPASS_AUDIT_STATUS = 2;
|
|
|
}
|
|
|
|
|
|
public interface Public_User_Comment{
|
|
|
public interface Public_User_Comment {
|
|
|
/**
|
|
|
* 公共库的用户评论状态(1-未审核 2-审核通过 3-审核未通过)
|
|
|
*/
|
...
|
...
|
@@ -33,12 +33,12 @@ public class ServiceConstant { |
|
|
|
|
|
}
|
|
|
|
|
|
public interface Grass_Article_Phraise{
|
|
|
public interface Grass_Article_Phraise {
|
|
|
int PHRAISED_STATUS = 0;
|
|
|
int CANCELED_STATUS = 1;
|
|
|
}
|
|
|
|
|
|
public interface Public_User_Phraise{
|
|
|
public interface Public_User_Phraise {
|
|
|
/**
|
|
|
* 点赞状态 1-已点赞 2-已取消
|
|
|
*/
|
...
|
...
|
@@ -51,7 +51,7 @@ public class ServiceConstant { |
|
|
Integer COMMENT_PHRAISE = 2;
|
|
|
}
|
|
|
|
|
|
public interface Public_User_Favorite{
|
|
|
public interface Public_User_Favorite {
|
|
|
/**
|
|
|
* 收藏类型 1-收藏文章',
|
|
|
*/
|
...
|
...
|
@@ -64,9 +64,9 @@ public class ServiceConstant { |
|
|
|
|
|
}
|
|
|
|
|
|
public interface Public_User_Attention{
|
|
|
public interface Public_User_Attention {
|
|
|
/**
|
|
|
*关注类型:1-用户,2-话题
|
|
|
* 关注类型:1-用户,2-话题
|
|
|
*/
|
|
|
int ATTENTION_TYPE_USER = 1;
|
|
|
int ATTENTION_TYPE_TOPIC = 2;
|
...
|
...
|
@@ -78,9 +78,9 @@ public class ServiceConstant { |
|
|
int ATTENTION_EACHOTHER_STATUS = 2;
|
|
|
}
|
|
|
|
|
|
public interface Grass_User_Attention{
|
|
|
public interface Grass_User_Attention {
|
|
|
/**
|
|
|
*关注类型:1-用户,0-话题
|
|
|
* 关注类型:1-用户,0-话题
|
|
|
*/
|
|
|
int ATTENTION_TYPE_USER = 1;
|
|
|
int ATTENTION_TYPE_TOPIC = 0;
|
...
|
...
|
@@ -92,7 +92,7 @@ public class ServiceConstant { |
|
|
int CANCEL_STATUS = 1;
|
|
|
}
|
|
|
|
|
|
public interface Grass_Label_Group{
|
|
|
public interface Grass_Label_Group {
|
|
|
/**
|
|
|
* 标签分组状态 1开启,0关闭
|
|
|
*/
|
...
|
...
|
@@ -100,7 +100,7 @@ public class ServiceConstant { |
|
|
int CLOSE_STATUS = 0;
|
|
|
}
|
|
|
|
|
|
public interface Public_Label_Group{
|
|
|
public interface Public_Label_Group {
|
|
|
/**
|
|
|
* 标签分组状态 1开启,2关闭
|
|
|
*/
|
...
|
...
|
@@ -108,7 +108,7 @@ public class ServiceConstant { |
|
|
int CLOSE_STATUS = 2;
|
|
|
}
|
|
|
|
|
|
public interface Grass_Label{
|
|
|
public interface Grass_Label {
|
|
|
/**
|
|
|
* 状态 1开启,0关闭
|
|
|
*/
|
...
|
...
|
@@ -121,7 +121,7 @@ public class ServiceConstant { |
|
|
int NOT_VISIBLE_STATUS = 0;
|
|
|
}
|
|
|
|
|
|
public interface Public_Label{
|
|
|
public interface Public_Label {
|
|
|
/**
|
|
|
* 状态 1开启,2 关闭
|
|
|
*/
|
...
|
...
|
|