2
0

style: 替换项目内所有ruoyi转为wfc

This commit is contained in:
TsMask
2024-11-26 17:34:02 +08:00
parent 77a28b06a3
commit fab448f836
300 changed files with 1211 additions and 1428 deletions

View File

@@ -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>

View File

@@ -9,7 +9,7 @@ import org.wfc.common.swagger.annotation.EnableCustomSwagger2;
/**
* 代码生成
*
* @author ruoyi
* @author wfc
*/
@EnableCustomConfig
@EnableRyFeignClients

View File

@@ -6,7 +6,7 @@ import org.springframework.stereotype.Component;
/**
* 代码生成相关配置
*
* @author ruoyi
* @author wfc
*/
@Component
@ConfigurationProperties(prefix = "gen")

View File

@@ -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());

View File

@@ -11,7 +11,7 @@ import org.wfc.common.core.web.domain.BaseEntity;
/**
* 业务表 gen_table
*
* @author ruoyi
* @author wfc
*/
public class GenTable extends BaseEntity
{

View File

@@ -7,7 +7,7 @@ import org.wfc.common.core.web.domain.BaseEntity;
/**
* 代码生成业务字段表 gen_table_column
*
* @author ruoyi
* @author wfc
*/
public class GenTableColumn extends BaseEntity
{

View File

@@ -6,7 +6,7 @@ import org.wfc.gen.domain.GenTableColumn;
/**
* 业务字段 数据层
*
* @author ruoyi
* @author wfc
*/
public interface GenTableColumnMapper
{

View File

@@ -6,7 +6,7 @@ import org.wfc.gen.domain.GenTable;
/**
* 业务 数据层
*
* @author ruoyi
* @author wfc
*/
public interface GenTableMapper
{

View File

@@ -10,7 +10,7 @@ import org.wfc.gen.mapper.GenTableColumnMapper;
/**
* 业务字段 服务层实现
*
* @author ruoyi
* @author wfc
*/
@Service
public class GenTableColumnServiceImpl implements IGenTableColumnService

View File

@@ -40,7 +40,7 @@ import org.wfc.gen.util.VelocityUtils;
/**
* 业务 服务层实现
*
* @author ruoyi
* @author wfc
*/
@Service
public class GenTableServiceImpl implements IGenTableService

View File

@@ -6,7 +6,7 @@ import org.wfc.gen.domain.GenTableColumn;
/**
* 业务字段 服务层
*
* @author ruoyi
* @author wfc
*/
public interface IGenTableColumnService
{

View File

@@ -7,7 +7,7 @@ import org.wfc.gen.domain.GenTable;
/**
* 业务 服务层
*
* @author ruoyi
* @author wfc
*/
public interface IGenTableService
{

View File

@@ -11,7 +11,7 @@ import org.wfc.gen.domain.GenTableColumn;
/**
* 代码生成器 工具类
*
* @author ruoyi
* @author wfc
*/
public class GenUtils
{

View File

@@ -7,7 +7,7 @@ import org.wfc.common.core.constant.Constants;
/**
* VelocityEngine工厂
*
* @author ruoyi
* @author wfc
*/
public class VelocityInitializer
{

View File

@@ -16,7 +16,7 @@ import org.wfc.gen.domain.GenTableColumn;
/**
* 模板工具类
*
* @author ruoyi
* @author wfc
*/
public class VelocityUtils
{