修改名称

This commit is contained in:
lpd
2026-01-21 16:33:12 +08:00
parent e6ffbb2197
commit 09d32a7796
524 changed files with 553 additions and 553 deletions

View File

@@ -3,7 +3,7 @@ package cn.iocoder.lyzsys.module.infra.api.config;
/**
* 参数配置 API 接口
*
* @author 芋道源码
* @author lyz源码
*/
public interface ConfigApi {

View File

@@ -10,7 +10,7 @@ import javax.annotation.Resource;
/**
* 参数配置 API 实现类
*
* @author 芋道源码
* @author lyz源码
*/
@Service
@Validated

View File

@@ -5,7 +5,7 @@ import javax.validation.constraints.NotEmpty;
/**
* 文件 API 接口
*
* @author 芋道源码
* @author lyz源码
*/
public interface FileApi {

View File

@@ -9,7 +9,7 @@ import javax.annotation.Resource;
/**
* 文件 API 实现类
*
* @author 芋道源码
* @author lyz源码
*/
@Service
@Validated

View File

@@ -11,7 +11,7 @@ import javax.annotation.Resource;
/**
* API 访问日志的 API 实现类
*
* @author 芋道源码
* @author lyz源码
*/
@Service
@Validated

View File

@@ -11,7 +11,7 @@ import javax.annotation.Resource;
/**
* API 访问日志的 API 接口
*
* @author 芋道源码
* @author lyz源码
*/
@Service
@Validated

View File

@@ -7,7 +7,7 @@ import cn.iocoder.lyzsys.framework.common.util.json.JsonUtils;
*
* 对 WebSocketMessageSender 进行封装,提供给其它模块使用
*
* @author 芋道源码
* @author lyz源码
*/
public interface WebSocketSenderApi {

View File

@@ -7,7 +7,7 @@ import org.springframework.stereotype.Component;
/**
* WebSocket 发送器的 API 实现类
*
* @author 芋道源码
* @author lyz源码
*/
@Component
public class WebSocketSenderApiImpl implements WebSocketSenderApi {

View File

@@ -51,7 +51,7 @@ public class CodegenController {
@Parameters({
@Parameter(name = "dataSourceConfigId", description = "数据源配置的编号", required = true, example = "1"),
@Parameter(name = "name", description = "表名,模糊匹配", example = "lyzsys"),
@Parameter(name = "comment", description = "描述,模糊匹配", example = "芋道")
@Parameter(name = "comment", description = "描述,模糊匹配", example = "lyz")
})
@PreAuthorize("@ss.hasPermission('infra:codegen:query')")
public CommonResult<List<DatabaseTableRespVO>> getDatabaseTableList(

View File

@@ -16,7 +16,7 @@ public class CodegenTablePageReqVO extends PageParam {
@Schema(description = "表名称,模糊匹配", example = "lyzsys")
private String tableName;
@Schema(description = "表描述,模糊匹配", example = "芋道")
@Schema(description = "表描述,模糊匹配", example = "lyz")
private String tableComment;
@Schema(description = "实体,模糊匹配", example = "Lyzsys")

View File

@@ -18,7 +18,7 @@ public class CodegenTableRespVO {
@Schema(description = "表名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "lyzsys")
private String tableName;
@Schema(description = "表描述", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋道")
@Schema(description = "表描述", requiredMode = Schema.RequiredMode.REQUIRED, example = "lyz")
private String tableComment;
@Schema(description = "备注", example = "我是备注")
@@ -36,7 +36,7 @@ public class CodegenTableRespVO {
@Schema(description = "类描述", requiredMode = Schema.RequiredMode.REQUIRED, example = "代码生成器的表定义")
private String classComment;
@Schema(description = "作者", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋道源码")
@Schema(description = "作者", requiredMode = Schema.RequiredMode.REQUIRED, example = "lyz源码")
private String author;
@Schema(description = "模板类型,参见 CodegenTemplateTypeEnum 枚举", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")

View File

@@ -25,7 +25,7 @@ public class CodegenTableSaveReqVO {
@NotNull(message = "表名称不能为空")
private String tableName;
@Schema(description = "表描述", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋道")
@Schema(description = "表描述", requiredMode = Schema.RequiredMode.REQUIRED, example = "lyz")
@NotNull(message = "表描述不能为空")
private String tableComment;
@@ -48,7 +48,7 @@ public class CodegenTableSaveReqVO {
@NotNull(message = "类描述不能为空")
private String classComment;
@Schema(description = "作者", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋道源码")
@Schema(description = "作者", requiredMode = Schema.RequiredMode.REQUIRED, example = "lyz源码")
@NotNull(message = "作者不能为空")
private String author;

View File

@@ -10,7 +10,7 @@ public class DatabaseTableRespVO {
@Schema(description = "表名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "yuanma")
private String name;
@Schema(description = "表描述", requiredMode = Schema.RequiredMode.REQUIRED, example = "芋道源码")
@Schema(description = "表描述", requiredMode = Schema.RequiredMode.REQUIRED, example = "lyz源码")
private String comment;
}

View File

@@ -89,7 +89,7 @@ public class ApiAccessLogRespVO {
@ExcelProperty("结果码")
private Integer resultCode;
@Schema(description = "结果提示", example = "芋道源码,牛逼!")
@Schema(description = "结果提示", example = "lyz源码,牛逼!")
@ExcelProperty("结果提示")
private String resultMsg;

View File

@@ -9,7 +9,7 @@ import org.mapstruct.factory.Mappers;
/**
* 文件配置 Convert
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface FileConfigConvert {

View File

@@ -13,7 +13,7 @@ import lombok.Data;
/**
* 代码生成 column 字段定义
*
* @author 芋道源码
* @author lyz源码
*/
@TableName(value = "infra_codegen_column", autoResultMap = true)
@KeySequence("infra_codegen_column_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -15,7 +15,7 @@ import lombok.Data;
/**
* 代码生成 table 表定义
*
* @author 芋道源码
* @author lyz源码
*/
@TableName(value = "infra_codegen_table", autoResultMap = true)
@KeySequence("infra_codegen_table_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -13,7 +13,7 @@ import lombok.ToString;
/**
* 参数配置表
*
* @author 芋道源码
* @author lyz源码
*/
@TableName("infra_config")
@KeySequence("infra_config_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -11,7 +11,7 @@ import lombok.Data;
/**
* 数据源配置
*
* @author 芋道源码
* @author lyz源码
*/
@TableName(value = "infra_data_source_config", autoResultMap = true)
@KeySequence("infra_data_source_config_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -11,7 +11,7 @@ import java.time.LocalDateTime;
/**
* 示例联系人 DO
*
* @author 芋道源码
* @author lyz源码
*/
@TableName("lyzsys_demo01_contact")
@KeySequence("lyzsys_demo01_contact_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -9,7 +9,7 @@ import lombok.*;
/**
* 示例分类 DO
*
* @author 芋道源码
* @author lyz源码
*/
@TableName("lyzsys_demo02_category")
@KeySequence("lyzsys_demo02_category_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -9,7 +9,7 @@ import lombok.*;
/**
* 学生课程 DO
*
* @author 芋道源码
* @author lyz源码
*/
@TableName("lyzsys_demo03_course")
@KeySequence("lyzsys_demo03_course_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -9,7 +9,7 @@ import lombok.*;
/**
* 学生班级 DO
*
* @author 芋道源码
* @author lyz源码
*/
@TableName("lyzsys_demo03_grade")
@KeySequence("lyzsys_demo03_grade_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -11,7 +11,7 @@ import java.time.LocalDateTime;
/**
* 学生 DO
*
* @author 芋道源码
* @author lyz源码
*/
@TableName("lyzsys_demo03_student")
@KeySequence("lyzsys_demo03_student_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -23,7 +23,7 @@ import java.lang.reflect.Field;
/**
* 文件配置表
*
* @author 芋道源码
* @author lyz源码
*/
@TableName(value = "infra_file_config", autoResultMap = true)
@KeySequence("infra_file_config_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -13,7 +13,7 @@ import lombok.*;
*
* 专门用于存储 {@link DBFileClient} 的文件内容
*
* @author 芋道源码
* @author lyz源码
*/
@TableName("infra_file_content")
@KeySequence("infra_file_content_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -10,7 +10,7 @@ import lombok.*;
* 文件表
* 每次文件上传,都会记录一条记录到该表中
*
* @author 芋道源码
* @author lyz源码
*/
@TableName("infra_file")
@KeySequence("infra_file_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -11,7 +11,7 @@ import lombok.*;
/**
* 定时任务 DO
*
* @author 芋道源码
* @author lyz源码
*/
@TableName("infra_job")
@KeySequence("infra_job_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -13,7 +13,7 @@ import java.time.LocalDateTime;
/**
* 定时任务的执行日志
*
* @author 芋道源码
* @author lyz源码
*/
@TableName("infra_job_log")
@KeySequence("infra_job_log_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -14,7 +14,7 @@ import java.time.LocalDateTime;
/**
* API 访问日志
*
* @author 芋道源码
* @author lyz源码
*/
@TableName("infra_api_access_log")
@KeySequence(value = "infra_api_access_log_seq")

View File

@@ -13,7 +13,7 @@ import java.time.LocalDateTime;
/**
* API 异常数据
*
* @author 芋道源码
* @author lyz源码
*/
@TableName("infra_api_error_log")
@Data

View File

@@ -7,7 +7,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* 数据源配置 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface DataSourceConfigMapper extends BaseMapperX<DataSourceConfigDO> {

View File

@@ -10,7 +10,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* 示例联系人 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface Demo01ContactMapper extends BaseMapperX<Demo01ContactDO> {

View File

@@ -11,7 +11,7 @@ import java.util.List;
/**
* 示例分类 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface Demo02CategoryMapper extends BaseMapperX<Demo02CategoryDO> {

View File

@@ -12,7 +12,7 @@ import java.util.List;
/**
* 学生课程 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface Demo03CourseErpMapper extends BaseMapperX<Demo03CourseDO> {

View File

@@ -12,7 +12,7 @@ import java.util.List;
/**
* 学生班级 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface Demo03GradeErpMapper extends BaseMapperX<Demo03GradeDO> {

View File

@@ -10,7 +10,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* 学生 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface Demo03StudentErpMapper extends BaseMapperX<Demo03StudentDO> {

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* 学生课程 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface Demo03CourseInnerMapper extends BaseMapperX<Demo03CourseDO> {

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* 学生班级 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface Demo03GradeInnerMapper extends BaseMapperX<Demo03GradeDO> {

View File

@@ -10,7 +10,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* 学生 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface Demo03StudentInnerMapper extends BaseMapperX<Demo03StudentDO> {

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* 学生课程 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface Demo03CourseNormalMapper extends BaseMapperX<Demo03CourseDO> {

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* 学生班级 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface Demo03GradeNormalMapper extends BaseMapperX<Demo03GradeDO> {

View File

@@ -10,7 +10,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* 学生 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface Demo03StudentNormalMapper extends BaseMapperX<Demo03StudentDO> {

View File

@@ -10,7 +10,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* 文件操作 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface FileMapper extends BaseMapperX<FileDO> {

View File

@@ -14,7 +14,7 @@ import java.time.LocalDateTime;
/**
* 任务日志 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface JobLogMapper extends BaseMapperX<JobLogDO> {

View File

@@ -10,7 +10,7 @@ import org.apache.ibatis.annotations.Mapper;
/**
* 定时任务 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface JobMapper extends BaseMapperX<JobDO> {

View File

@@ -14,7 +14,7 @@ import java.time.LocalDateTime;
/**
* API 访问日志 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface ApiAccessLogMapper extends BaseMapperX<ApiAccessLogDO> {

View File

@@ -14,7 +14,7 @@ import java.time.LocalDateTime;
/**
* API 错误日志 Mapper
*
* @author 芋道源码
* @author lyz源码
*/
@Mapper
public interface ApiErrorLogMapper extends BaseMapperX<ApiErrorLogDO> {

View File

@@ -3,7 +3,7 @@ package cn.iocoder.lyzsys.module.infra.enums;
/**
* Infra 字典类型的枚举类
*
* @author 芋道源码
* @author lyz源码
*/
public interface DictTypeConstants {

View File

@@ -6,7 +6,7 @@ import lombok.Getter;
/**
* 代码生成的前端类型枚举
*
* @author 芋道源码
* @author lyz源码
*/
@AllArgsConstructor
@Getter

View File

@@ -8,7 +8,7 @@ import static cn.hutool.core.util.ArrayUtil.*;
/**
* 代码生成的场景枚举
*
* @author 芋道源码
* @author lyz源码
*/
@AllArgsConstructor
@Getter

View File

@@ -9,7 +9,7 @@ import java.util.Objects;
/**
* 代码生成模板类型
*
* @author 芋道源码
* @author lyz源码
*/
@AllArgsConstructor
@Getter

View File

@@ -9,7 +9,7 @@ import lombok.Getter;
* 目前的作用Controller 新增、修改、响应时,使用 VO 还是 DO
* 注意:不包括 Controller 的分页参数!
*
* @author 芋道源码
* @author lyz源码
*/
@AllArgsConstructor
@Getter

View File

@@ -6,7 +6,7 @@ import lombok.Getter;
/**
* 任务日志的状态枚举
*
* @author 芋道源码
* @author lyz源码
*/
@Getter
@AllArgsConstructor

View File

@@ -11,7 +11,7 @@ import java.util.Set;
/**
* 任务状态的枚举
*
* @author 芋道源码
* @author lyz源码
*/
@Getter
@AllArgsConstructor

View File

@@ -6,7 +6,7 @@ import lombok.Getter;
/**
* API 异常数据的处理状态
*
* @author 芋道源码
* @author lyz源码
*/
@AllArgsConstructor
@Getter

View File

@@ -8,7 +8,7 @@ import org.springframework.context.annotation.Configuration;
/**
* 文件配置类
*
* @author 芋道源码
* @author lyz源码
*/
@Configuration(proxyBeanMethods = false)
public class LyzsysFileAutoConfiguration {

View File

@@ -6,7 +6,7 @@ import lombok.extern.slf4j.Slf4j;
/**
* 文件客户端的抽象类,提供模板方法,减少子类的冗余代码
*
* @author 芋道源码
* @author lyz源码
*/
@Slf4j
public abstract class AbstractFileClient<Config extends FileClientConfig> implements FileClient {

View File

@@ -3,7 +3,7 @@ package cn.iocoder.lyzsys.module.infra.framework.file.core.client;
/**
* 文件客户端
*
* @author 芋道源码
* @author lyz源码
*/
public interface FileClient {

View File

@@ -6,7 +6,7 @@ import com.fasterxml.jackson.annotation.JsonTypeInfo;
* 文件客户端的配置
* 不同实现的客户端,需要不同的配置,通过子类来定义
*
* @author 芋道源码
* @author lyz源码
*/
@JsonTypeInfo(use = JsonTypeInfo.Id.CLASS)
// @JsonTypeInfo 注解的作用Jackson 多态

View File

@@ -11,7 +11,7 @@ import java.util.concurrent.ConcurrentMap;
/**
* 文件客户端的工厂实现类
*
* @author 芋道源码
* @author lyz源码
*/
@Slf4j
public class FileClientFactoryImpl implements FileClientFactory {

View File

@@ -12,7 +12,7 @@ import java.util.List;
/**
* 基于 DB 存储的文件客户端的配置类
*
* @author 芋道源码
* @author lyz源码
*/
public class DBFileClient extends AbstractFileClient<DBFileClientConfig> {

View File

@@ -9,7 +9,7 @@ import javax.validation.constraints.NotEmpty;
/**
* 基于 DB 存储的文件客户端的配置类
*
* @author 芋道源码
* @author lyz源码
*/
@Data
public class DBFileClientConfig implements FileClientConfig {

View File

@@ -15,7 +15,7 @@ import java.io.ByteArrayOutputStream;
/**
* Ftp 文件客户端
*
* @author 芋道源码
* @author lyz源码
*/
public class FtpFileClient extends AbstractFileClient<FtpFileClientConfig> {

View File

@@ -10,7 +10,7 @@ import javax.validation.constraints.NotNull;
/**
* Ftp 文件客户端的配置类
*
* @author 芋道源码
* @author lyz源码
*/
@Data
public class FtpFileClientConfig implements FileClientConfig {

View File

@@ -9,7 +9,7 @@ import java.io.File;
/**
* 本地文件客户端
*
* @author 芋道源码
* @author lyz源码
*/
public class LocalFileClient extends AbstractFileClient<LocalFileClientConfig> {

View File

@@ -9,7 +9,7 @@ import javax.validation.constraints.NotEmpty;
/**
* 本地文件客户端的配置类
*
* @author 芋道源码
* @author lyz源码
*/
@Data
public class LocalFileClientConfig implements FileClientConfig {

View File

@@ -27,7 +27,7 @@ import java.time.Duration;
/**
* 基于 S3 协议的文件客户端,实现 MinIO、阿里云、腾讯云、七牛云、华为云等云服务
*
* @author 芋道源码
* @author lyz源码
*/
public class S3FileClient extends AbstractFileClient<S3FileClientConfig> {

View File

@@ -12,7 +12,7 @@ import javax.validation.constraints.NotNull;
/**
* S3 文件客户端的配置类
*
* @author 芋道源码
* @author lyz源码
*/
@Data
public class S3FileClientConfig implements FileClientConfig {

View File

@@ -15,7 +15,7 @@ import java.io.File;
/**
* Sftp 文件客户端
*
* @author 芋道源码
* @author lyz源码
*/
public class SftpFileClient extends AbstractFileClient<SftpFileClientConfig> {

View File

@@ -10,7 +10,7 @@ import javax.validation.constraints.NotNull;
/**
* Sftp 文件客户端的配置类
*
* @author 芋道源码
* @author lyz源码
*/
@Data
public class SftpFileClientConfig implements FileClientConfig {

View File

@@ -19,7 +19,7 @@ import lombok.Getter;
/**
* 文件存储器枚举
*
* @author 芋道源码
* @author lyz源码
*/
@AllArgsConstructor
@Getter

View File

@@ -15,7 +15,7 @@ import java.io.IOException;
/**
* 文件类型 Utils
*
* @author 芋道源码
* @author lyz源码
*/
@Slf4j
public class FileTypeUtils {

View File

@@ -7,6 +7,6 @@
* 4. db数据库
* 5. s3支持 S3 协议的云存储服务,例如说 MinIO、阿里云、华为云、腾讯云、七牛云等等
*
* @author 芋道源码
* @author lyz源码
*/
package cn.iocoder.lyzsys.module.infra.framework.file;

View File

@@ -25,7 +25,7 @@ import javax.servlet.DispatcherType;
* 安全配置独立于 {@link cn.iocoder.lyzsys.framework.security.config.LyzsysWebSecurityConfigurerAdapter}
* 使用 HTTP Basic 认证保护 Admin Server 端点,不影响现有的 Token 认证机制
*
* @author 芋道源码
* @author lyz源码
*/
@Configuration(proxyBeanMethods = false)
@EnableAdminServer

View File

@@ -1,6 +1,6 @@
/**
* 属于 infra 模块的 framework 封装
*
* @author 芋道源码
* @author lyz源码
*/
package cn.iocoder.lyzsys.module.infra.framework;

View File

@@ -8,7 +8,7 @@ import org.springframework.context.annotation.Configuration;
/**
* infra 模块的 web 组件的 Configuration
*
* @author 芋道源码
* @author lyz源码
*/
@Configuration(proxyBeanMethods = false)
public class InfraWebConfiguration {

View File

@@ -14,7 +14,7 @@ import java.util.Map;
/**
* 代码生成 Service 接口
*
* @author 芋道源码
* @author lyz源码
*/
public interface CodegenService {

View File

@@ -42,7 +42,7 @@ import static cn.iocoder.lyzsys.module.infra.enums.ErrorCodeConstants.*;
/**
* 代码生成 Service 实现类
*
* @author 芋道源码
* @author lyz源码
*/
@Service
public class CodegenServiceImpl implements CodegenService {

View File

@@ -55,7 +55,7 @@ import static cn.hutool.core.text.CharSequenceUtil.*;
*
* 考虑到 Java 模板引擎的框架非常多Freemarker、Velocity、Thymeleaf 等等,所以我们采用 hutool 封装的 {@link cn.hutool.extra.template.Template} 抽象
*
* @author 芋道源码
* @author lyz源码
*/
@Component
public class CodegenEngine {

View File

@@ -11,7 +11,7 @@ import java.util.List;
/**
* 参数配置 Service 接口
*
* @author 芋道源码
* @author lyz源码
*/
public interface ConfigService {

View File

@@ -9,7 +9,7 @@ import java.util.List;
/**
* 数据源配置 Service 接口
*
* @author 芋道源码
* @author lyz源码
*/
public interface DataSourceConfigService {

View File

@@ -21,7 +21,7 @@ import static cn.iocoder.lyzsys.module.infra.enums.ErrorCodeConstants.DATA_SOURC
/**
* 数据源配置 Service 实现类
*
* @author 芋道源码
* @author lyz源码
*/
@Service
@Validated

View File

@@ -7,7 +7,7 @@ import java.util.List;
/**
* 数据库表 Service
*
* @author 芋道源码
* @author lyz源码
*/
public interface DatabaseTableService {

View File

@@ -22,7 +22,7 @@ import java.util.stream.Collectors;
/**
* 数据库表 Service 实现类
*
* @author 芋道源码
* @author lyz源码
*/
@Service
public class DatabaseTableServiceImpl implements DatabaseTableService {

View File

@@ -11,7 +11,7 @@ import java.util.List;
/**
* 示例联系人 Service 接口
*
* @author 芋道源码
* @author lyz源码
*/
public interface Demo01ContactService {

View File

@@ -19,7 +19,7 @@ import static cn.iocoder.lyzsys.module.infra.enums.ErrorCodeConstants.DEMO01_CON
/**
* 示例联系人 Service 实现类
*
* @author 芋道源码
* @author lyz源码
*/
@Service
@Validated

View File

@@ -10,7 +10,7 @@ import java.util.List;
/**
* 示例分类 Service 接口
*
* @author 芋道源码
* @author lyz源码
*/
public interface Demo02CategoryService {

View File

@@ -18,7 +18,7 @@ import static cn.iocoder.lyzsys.module.infra.enums.ErrorCodeConstants.*;
/**
* 示例分类 Service 实现类
*
* @author 芋道源码
* @author lyz源码
*/
@Service
@Validated

View File

@@ -14,7 +14,7 @@ import java.util.List;
/**
* 学生 Service 接口
*
* @author 芋道源码
* @author lyz源码
*/
public interface Demo03StudentErpService {

View File

@@ -25,7 +25,7 @@ import static cn.iocoder.lyzsys.module.infra.enums.ErrorCodeConstants.*;
/**
* 学生 Service 实现类
*
* @author 芋道源码
* @author lyz源码
*/
@Service
@Validated

View File

@@ -13,7 +13,7 @@ import java.util.List;
/**
* 学生 Service 接口
*
* @author 芋道源码
* @author lyz源码
*/
public interface Demo03StudentInnerService {

View File

@@ -27,7 +27,7 @@ import static cn.iocoder.lyzsys.module.infra.enums.ErrorCodeConstants.DEMO03_STU
/**
* 学生 Service 实现类
*
* @author 芋道源码
* @author lyz源码
*/
@Service
@Validated

View File

@@ -13,7 +13,7 @@ import java.util.List;
/**
* 学生 Service 接口
*
* @author 芋道源码
* @author lyz源码
*/
public interface Demo03StudentNormalService {

View File

@@ -27,7 +27,7 @@ import static cn.iocoder.lyzsys.module.infra.enums.ErrorCodeConstants.DEMO03_STU
/**
* 学生 Service 实现类
*
* @author 芋道源码
* @author lyz源码
*/
@Service
@Validated

View File

@@ -12,7 +12,7 @@ import java.util.List;
/**
* 文件配置 Service 接口
*
* @author 芋道源码
* @author lyz源码
*/
public interface FileConfigService {

View File

@@ -37,7 +37,7 @@ import static cn.iocoder.lyzsys.module.infra.enums.ErrorCodeConstants.FILE_CONFI
/**
* 文件配置 Service 实现类
*
* @author 芋道源码
* @author lyz源码
*/
@Service
@Validated

View File

@@ -12,7 +12,7 @@ import java.util.List;
/**
* 文件 Service 接口
*
* @author 芋道源码
* @author lyz源码
*/
public interface FileService {

View File

@@ -29,7 +29,7 @@ import static cn.iocoder.lyzsys.module.infra.enums.ErrorCodeConstants.FILE_NOT_E
/**
* 文件 Service 实现类
*
* @author 芋道源码
* @author lyz源码
*/
@Service
public class FileServiceImpl implements FileService {

View File

@@ -8,7 +8,7 @@ import cn.iocoder.lyzsys.module.infra.dal.dataobject.job.JobLogDO;
/**
* Job 日志 Service 接口
*
* @author 芋道源码
* @author lyz源码
*/
public interface JobLogService extends JobLogFrameworkService {

Some files were not shown because too many files have changed in this diff Show More