globals.java

来自「一个完整的网络订餐系统」· Java 代码 · 共 29 行

JAVA
29
字号
package com.common;

public class Globals {

  public Globals()
  {
  }
  public static String REQUEST_BUYERSEARCHCON ="request_buyerlist";/////
  public static String SESSION_USERINFO = "session_userinfo";
  public static String SESSION_CONTEXT = "session_context";
  public static String SESSION_QUERYS = "session_querys";
  public static String REQUEST_FORMBEAN = "request_formbean";
  public static String REQUEST_ERRORMSG = "request_errmsg";
  public static int REC_NUM_OF_PAGE = 10;
  public static String REQUEST_USERMANAGE = "request_usermanage";
  public static String REQUEST_MEMBERMANAGE = "request_membermanage";
  public static String REQUEST_FOODSEARCHCON = "request_foodlist";
  public static String REQUEST_FOODSETSEARCHCON = "request_foodsetlist";
  public static String REQUEST_MEMBERSEARCHCON = "request_memberlist";
  public static String REQUEST_ORDERSEARCHCON = "request_orderlist";
  public static String REQUEST_ORDERITEMSEARCHCON = "request_orderitemlist";
  public static String REQUEST_STORESEARCHCON = "request_storelist";
  public static String REQUEST_MENUBILLSEARCHCON="request_menubilllist";
  public static String REQUEST_INFORMATIONSEARCHCON="request_informationlist";
  public static String REQUEST_CATALOGSEARCHCON="request_cataloglist";

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?