style: 替换项目内所有ruoyi转为wfc
This commit is contained in:
@@ -53,13 +53,13 @@
|
||||
<artifactId>mysql-connector-j</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!-- RuoYi Common Log -->
|
||||
<!-- WFC Common Log -->
|
||||
<dependency>
|
||||
<groupId>org.wfc</groupId>
|
||||
<artifactId>wfc-common-log</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!-- RuoYi Common Swagger -->
|
||||
<!-- WFC Common Swagger -->
|
||||
<dependency>
|
||||
<groupId>org.wfc</groupId>
|
||||
<artifactId>wfc-common-swagger</artifactId>
|
||||
|
||||
@@ -9,7 +9,7 @@ import org.wfc.common.swagger.annotation.EnableCustomSwagger2;
|
||||
/**
|
||||
* 代码生成
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author wfc
|
||||
*/
|
||||
@EnableCustomConfig
|
||||
@EnableRyFeignClients
|
||||
|
||||
@@ -6,7 +6,7 @@ import org.springframework.stereotype.Component;
|
||||
/**
|
||||
* 代码生成相关配置
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author wfc
|
||||
*/
|
||||
@Component
|
||||
@ConfigurationProperties(prefix = "gen")
|
||||
|
||||
@@ -31,7 +31,7 @@ import org.wfc.gen.service.IGenTableService;
|
||||
/**
|
||||
* 代码生成 操作处理
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author wfc
|
||||
*/
|
||||
@RequestMapping("/gen")
|
||||
@RestController
|
||||
@@ -203,7 +203,7 @@ public class GenController extends BaseController
|
||||
private void genCode(HttpServletResponse response, byte[] data) throws IOException
|
||||
{
|
||||
response.reset();
|
||||
response.setHeader("Content-Disposition", "attachment; filename=\"ruoyi.zip\"");
|
||||
response.setHeader("Content-Disposition", "attachment; filename=\"wfc.zip\"");
|
||||
response.addHeader("Content-Length", "" + data.length);
|
||||
response.setContentType("application/octet-stream; charset=UTF-8");
|
||||
IOUtils.write(data, response.getOutputStream());
|
||||
|
||||
@@ -11,7 +11,7 @@ import org.wfc.common.core.web.domain.BaseEntity;
|
||||
/**
|
||||
* 业务表 gen_table
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author wfc
|
||||
*/
|
||||
public class GenTable extends BaseEntity
|
||||
{
|
||||
|
||||
@@ -7,7 +7,7 @@ import org.wfc.common.core.web.domain.BaseEntity;
|
||||
/**
|
||||
* 代码生成业务字段表 gen_table_column
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author wfc
|
||||
*/
|
||||
public class GenTableColumn extends BaseEntity
|
||||
{
|
||||
|
||||
@@ -6,7 +6,7 @@ import org.wfc.gen.domain.GenTableColumn;
|
||||
/**
|
||||
* 业务字段 数据层
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author wfc
|
||||
*/
|
||||
public interface GenTableColumnMapper
|
||||
{
|
||||
|
||||
@@ -6,7 +6,7 @@ import org.wfc.gen.domain.GenTable;
|
||||
/**
|
||||
* 业务 数据层
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author wfc
|
||||
*/
|
||||
public interface GenTableMapper
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@ import org.wfc.gen.mapper.GenTableColumnMapper;
|
||||
/**
|
||||
* 业务字段 服务层实现
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author wfc
|
||||
*/
|
||||
@Service
|
||||
public class GenTableColumnServiceImpl implements IGenTableColumnService
|
||||
|
||||
@@ -40,7 +40,7 @@ import org.wfc.gen.util.VelocityUtils;
|
||||
/**
|
||||
* 业务 服务层实现
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author wfc
|
||||
*/
|
||||
@Service
|
||||
public class GenTableServiceImpl implements IGenTableService
|
||||
|
||||
@@ -6,7 +6,7 @@ import org.wfc.gen.domain.GenTableColumn;
|
||||
/**
|
||||
* 业务字段 服务层
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author wfc
|
||||
*/
|
||||
public interface IGenTableColumnService
|
||||
{
|
||||
|
||||
@@ -7,7 +7,7 @@ import org.wfc.gen.domain.GenTable;
|
||||
/**
|
||||
* 业务 服务层
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author wfc
|
||||
*/
|
||||
public interface IGenTableService
|
||||
{
|
||||
|
||||
@@ -11,7 +11,7 @@ import org.wfc.gen.domain.GenTableColumn;
|
||||
/**
|
||||
* 代码生成器 工具类
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author wfc
|
||||
*/
|
||||
public class GenUtils
|
||||
{
|
||||
|
||||
@@ -7,7 +7,7 @@ import org.wfc.common.core.constant.Constants;
|
||||
/**
|
||||
* VelocityEngine工厂
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author wfc
|
||||
*/
|
||||
public class VelocityInitializer
|
||||
{
|
||||
|
||||
@@ -16,7 +16,7 @@ import org.wfc.gen.domain.GenTableColumn;
|
||||
/**
|
||||
* 模板工具类
|
||||
*
|
||||
* @author ruoyi
|
||||
* @author wfc
|
||||
*/
|
||||
public class VelocityUtils
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user