package world.xuewei.constant; /** * 常量类 * * @author XUEW */ public class MedicalConstants { /** * 用户操作类型:搜索 */ public static final Integer TYPE_OPERATE = 1; /** * 用户操作类型:查看某种疾病 */ public static final Integer TYPE_ILLNESS = 2; /** * 用户操作类型:查看相关的药 */ public static final Integer TYPE_MEDICINE = 3; }