30 lines
422 B
Java
30 lines
422 B
Java
package com.mcwl.communityCenter.constant;
|
|
|
|
/**
|
|
* 状态常量
|
|
*/
|
|
public class AdviceConstant {
|
|
/**
|
|
* 社区通知
|
|
*/
|
|
public static final int COMMUNITY_NOTICE = 0;
|
|
|
|
/**
|
|
* 回复我的
|
|
*/
|
|
public static final int REPLY_ME = 1;
|
|
|
|
/**
|
|
* 等我回答
|
|
*/
|
|
public static final int WAIT_ME_ANSWER = 2;
|
|
|
|
/**
|
|
* 点赞
|
|
*/
|
|
public static final int LIKE = 3;
|
|
|
|
|
|
|
|
}
|