package jnpf.generater.model;
|
|
/**
|
*
|
* 代码生成文件后缀配置文件
|
* @author JNPF开发平台组
|
* @version V3.1.0
|
* @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
|
* @date 2021-03-17
|
*/
|
public class GenFileNameSuffix {
|
|
/**
|
* 实体后缀
|
*/
|
public static final String ENTITY="Entity";
|
|
/**
|
* Mapper XML后缀
|
*/
|
public static final String MAPPER_XML="Mapper";
|
|
/**
|
* Mapper后缀
|
*/
|
public static final String MAPPER="Mapper";
|
|
/**
|
* Service后缀
|
*/
|
public static final String SERVICE="Service";
|
|
/**
|
* SERVICEIMPL后缀
|
*/
|
public static final String SERVICEIMPL="ServiceImpl";
|
|
/**
|
* controller后缀
|
*/
|
public static final String CONTROLLER="Controller";
|
|
//=============================================================
|
//model文件后缀
|
|
|
//=============================================================
|
//前端文件后缀
|
|
}
|