46 lines
1.5 KiB
Java
46 lines
1.5 KiB
Java
package cn.feast.coding.tools;
|
|
|
|
public class JSPPageTemplate {
|
|
/**
|
|
* model模板
|
|
*/
|
|
public static final String MODEL_TEMPLATE = "JSPModelTemplate.ftl";
|
|
/**
|
|
* dao模板
|
|
*/
|
|
public static final String DAO_TEMPLATE = "JSPDaoTemplate.ftl";
|
|
/**
|
|
* DBUtils模板
|
|
*/
|
|
public static final String DBUTILS_TEMPLATE = "JSPDBUtilsTemplate.ftl";
|
|
/**
|
|
* PageUtils模板
|
|
*/
|
|
public static final String PAGE_UTILS_TEMPLATE = "JSPPageUtilsTemplate.ftl";
|
|
/**
|
|
* Page模板
|
|
*/
|
|
public static final String PAGE_TEMPLATE = "JSPPageTemplate.ftl";
|
|
/**
|
|
* xml模板
|
|
*/
|
|
public static final String XML_TEMPLATE = "JSPXmlTemplate.ftl";
|
|
/**
|
|
* servlet模板
|
|
*/
|
|
public static final String QUERY_SERVLET_TEMPLATE = "JSPQueryServletTemplate.ftl";
|
|
public static final String ADD_SERVLET_TEMPLATE = "JSPAddServletTemplate.ftl";
|
|
public static final String EDIT_SERVLET_TEMPLATE = "JSPEditServletTemplate.ftl";
|
|
public static final String UPDATE_SERVLET_TEMPLATE = "JSPUpdateServletTemplate.ftl";
|
|
public static final String DELETE_SERVLET_TEMPLATE = "JSPDeleteServletTemplate.ftl";
|
|
public static final String LOGIN_SERVLET_TEMPLATE = "JSPLoginServletTemplate.ftl";
|
|
/**
|
|
* 查询servlet模板
|
|
*/
|
|
public static final String QUERY_SERVLET_SELECTED_TEMPLATE = "JSPQuerySelectedServletTemplate.ftl";
|
|
/**
|
|
* 自定义模板
|
|
*/
|
|
public static final String DEFINED_TEMPLATE = "JSPDefinedTemplate.ftl";
|
|
}
|