/**
* CollectionTypeConst.java[v 1.0.0]
* class:com.bdyjy.fragment.base,CollectionTypeConst
* �ܺ� create at 2016-5-27 ����10:26:37
*/
package com.bdyjy.fragment.base;
/**
* com.bdyjy.fragment.base.CollectionTypeConst
*
* @author �ܺ�<br/>
* create at 2016-5-27 ����10:26:37
*/
public class CollectionTypeConst
{
/**
* ������
*/
public final static int NEWS = 1;
/**
* ������Ϣ
*/
public final static int LECTURE = 2;
/**
* ���Ż
*/
public final static int ACTIVITIES = 3;
/**
* ����֪ͨ
*/
public final static int NOTICE = 4;
/**
* ��Ƹ��Ϣ
*/
public final static int RECRUIT = 5;
/**
* �ڹ���ѧ
*/
public final static int WORK_STUDY = 6;
/**
* ���ֽ���
*/
public final static int SECOND_HAND_TRADE = 7;
/**
* ʧ������
*/
public final static int LOSTANDFOUND = 8;
public static String getTypeTrans(int type)
{
String res = null;
switch (type)
{
case 1:
res = "[������]";
break;
case 2:
res = "[������Ϣ]";
break;
case 3:
res = "[���Ż]";
break;
case 4:
res = "[����֪ͨ]";
break;
case 5:
res = "[��Ƹ��Ϣ]";
break;
case 6:
res = "[�ڹ���ѧ]";
break;
case 7:
res = "[���ֽ���]";
break;
case 8:
res = "[ʧ������]";
break;
}
return res;
}
}