修改注释

This commit is contained in:
阿沐 2023-02-21 16:44:04 +08:00
parent 4c6123a0af
commit d173428d2b
218 changed files with 219 additions and 0 deletions

View File

@ -6,6 +6,7 @@ import java.util.Map;
* 短信服务API * 短信服务API
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public interface SmsApi { public interface SmsApi {

View File

@ -6,6 +6,7 @@ import java.io.InputStream;
* 存储服务API * 存储服务API
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public interface StorageApi { public interface StorageApi {

View File

@ -13,6 +13,7 @@ import java.util.Map;
* 短信服务Api * 短信服务Api
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Component @Component
@AllArgsConstructor @AllArgsConstructor

View File

@ -11,6 +11,7 @@ import java.util.List;
* 短信平台 Cache * 短信平台 Cache
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Service @Service
@AllArgsConstructor @AllArgsConstructor

View File

@ -8,6 +8,7 @@ import org.springframework.stereotype.Service;
* 短信发送 Cache * 短信发送 Cache
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Service @Service
@AllArgsConstructor @AllArgsConstructor

View File

@ -22,6 +22,7 @@ import org.springframework.web.bind.annotation.RestController;
* 短信日志 * 短信日志
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("message/sms/log") @RequestMapping("message/sms/log")

View File

@ -29,6 +29,7 @@ import java.util.Map;
* 短信平台 * 短信平台
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("message/sms/platform") @RequestMapping("message/sms/platform")

View File

@ -13,6 +13,7 @@ import java.util.Date;
* 短信日志 * 短信日志
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
@EqualsAndHashCode(callSuper=false) @EqualsAndHashCode(callSuper=false)

View File

@ -9,6 +9,7 @@ import net.maku.framework.mybatis.entity.BaseEntity;
* 短信平台 * 短信平台
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = false) @EqualsAndHashCode(callSuper = false)

View File

@ -7,6 +7,7 @@ import lombok.Getter;
* 短信平台枚举 * 短信平台枚举
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Getter @Getter
@AllArgsConstructor @AllArgsConstructor

View File

@ -10,6 +10,7 @@ import net.maku.message.vo.SmsLogVO;
* 短信日志 * 短信日志
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public interface SmsLogService extends BaseService<SmsLogEntity> { public interface SmsLogService extends BaseService<SmsLogEntity> {

View File

@ -13,6 +13,7 @@ import java.util.List;
* 短信平台 * 短信平台
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public interface SmsPlatformService extends BaseService<SmsPlatformEntity> { public interface SmsPlatformService extends BaseService<SmsPlatformEntity> {

View File

@ -18,6 +18,7 @@ import org.springframework.stereotype.Service;
* 短信日志 * 短信日志
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Service @Service
@AllArgsConstructor @AllArgsConstructor

View File

@ -25,6 +25,7 @@ import java.util.List;
* 短信平台 * 短信平台
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Service @Service
@AllArgsConstructor @AllArgsConstructor

View File

@ -17,6 +17,7 @@ import java.util.Map;
* 阿里云短信 * 阿里云短信
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Slf4j @Slf4j
public class AliyunSmsStrategy implements SmsStrategy { public class AliyunSmsStrategy implements SmsStrategy {

View File

@ -24,6 +24,7 @@ import java.util.*;
* 华为云短信 * 华为云短信
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public class HuaweiSmsStrategy implements SmsStrategy { public class HuaweiSmsStrategy implements SmsStrategy {
// 无需修改用于格式化鉴权头域"X-WSSE"参数赋值 // 无需修改用于格式化鉴权头域"X-WSSE"参数赋值

View File

@ -12,6 +12,7 @@ import java.util.Map;
* 七牛云短信 * 七牛云短信
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public class QiniuSmsStrategy implements SmsStrategy { public class QiniuSmsStrategy implements SmsStrategy {
private final SmsConfig smsConfig; private final SmsConfig smsConfig;

View File

@ -10,6 +10,7 @@ import java.util.Map;
* 短信 Context * 短信 Context
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public class SmsContext { public class SmsContext {
private final SmsStrategy smsStrategy; private final SmsStrategy smsStrategy;

View File

@ -6,6 +6,7 @@ import java.util.Map;
* 短信 * 短信
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public interface SmsStrategy { public interface SmsStrategy {

View File

@ -18,6 +18,7 @@ import java.util.Map;
* 腾讯云短信 * 腾讯云短信
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public class TencentSmsStrategy implements SmsStrategy { public class TencentSmsStrategy implements SmsStrategy {
private final SmsConfig smsConfig; private final SmsConfig smsConfig;

View File

@ -6,6 +6,7 @@ import lombok.Data;
* 短信配置项 * 短信配置项
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
public class SmsConfig { public class SmsConfig {

View File

@ -23,6 +23,7 @@ import java.util.Map;
* 短信服务 * 短信服务
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Slf4j @Slf4j
@Service @Service

View File

@ -12,6 +12,7 @@ import java.util.Date;
* 短信平台 * 短信平台
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
@Schema(description = "短信平台") @Schema(description = "短信平台")

View File

@ -11,6 +11,7 @@ import java.util.Properties;
* 定时任务配置 * 定时任务配置
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Configuration @Configuration
public class ScheduleConfig { public class ScheduleConfig {

View File

@ -26,6 +26,7 @@ import java.util.List;
* 定时任务 * 定时任务
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("schedule") @RequestMapping("schedule")

View File

@ -22,6 +22,7 @@ import org.springframework.web.bind.annotation.RestController;
* 定时任务日志 * 定时任务日志
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("schedule/log") @RequestMapping("schedule/log")

View File

@ -10,6 +10,7 @@ import java.util.Date;
* 定时任务 * 定时任务
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
@TableName("schedule_job") @TableName("schedule_job")

View File

@ -12,6 +12,7 @@ import java.util.Date;
* 定时任务日志 * 定时任务日志
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
@TableName("schedule_job_log") @TableName("schedule_job_log")

View File

@ -7,6 +7,7 @@ import lombok.Getter;
* 定时任务并发枚举 * 定时任务并发枚举
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Getter @Getter
@AllArgsConstructor @AllArgsConstructor

View File

@ -7,6 +7,7 @@ import lombok.Getter;
* 定时任务状态枚举 * 定时任务状态枚举
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Getter @Getter
@AllArgsConstructor @AllArgsConstructor

View File

@ -10,6 +10,7 @@ import net.maku.quartz.vo.ScheduleJobLogVO;
* 定时任务日志 * 定时任务日志
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public interface ScheduleJobLogService extends BaseService<ScheduleJobLogEntity> { public interface ScheduleJobLogService extends BaseService<ScheduleJobLogEntity> {

View File

@ -12,6 +12,7 @@ import java.util.List;
* 定时任务 * 定时任务
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public interface ScheduleJobService extends BaseService<ScheduleJobEntity> { public interface ScheduleJobService extends BaseService<ScheduleJobEntity> {

View File

@ -19,6 +19,7 @@ import org.springframework.stereotype.Service;
* 定时任务日志 * 定时任务日志
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Service @Service
@AllArgsConstructor @AllArgsConstructor

View File

@ -27,6 +27,7 @@ import java.util.List;
* 定时任务 * 定时任务
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Service @Service
@AllArgsConstructor @AllArgsConstructor

View File

@ -7,6 +7,7 @@ import org.springframework.stereotype.Service;
* 测试定时任务 * 测试定时任务
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Slf4j @Slf4j
@Service @Service

View File

@ -9,6 +9,7 @@ import java.util.Date;
* cron 工具类 * cron 工具类
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
* *
*/ */
public class CronUtils { public class CronUtils {

View File

@ -4,6 +4,7 @@ package net.maku.quartz.utils;
* 允许并发不会等待上一次任务执行完毕只要时间到就会执行 * 允许并发不会等待上一次任务执行完毕只要时间到就会执行
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
* *
*/ */
public class ScheduleConcurrentExecution extends AbstractScheduleJob { public class ScheduleConcurrentExecution extends AbstractScheduleJob {

View File

@ -6,6 +6,7 @@ import org.quartz.DisallowConcurrentExecution;
* 禁止并发 * 禁止并发
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
* *
*/ */
@DisallowConcurrentExecution @DisallowConcurrentExecution

View File

@ -10,6 +10,7 @@ import org.quartz.*;
* 定时任务工具类 * 定时任务工具类
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public class ScheduleUtils { public class ScheduleUtils {
private final static String JOB_NAME = "TASK_NAME_"; private final static String JOB_NAME = "TASK_NAME_";

View File

@ -12,6 +12,7 @@ import org.springframework.web.bind.annotation.RestController;
* 新模块测试 * 新模块测试
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("new/test") @RequestMapping("new/test")

View File

@ -11,6 +11,7 @@ import java.util.Map;
* 登录配置信息 * 登录配置信息
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Configuration @Configuration
public class LoginConfig { public class LoginConfig {

View File

@ -14,6 +14,7 @@ import org.springframework.stereotype.Component;
* 认证事件处理 * 认证事件处理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Component @Component
@AllArgsConstructor @AllArgsConstructor

View File

@ -13,6 +13,7 @@ import org.springframework.stereotype.Service;
* 手机验证码登录 MobileUserDetailsService * 手机验证码登录 MobileUserDetailsService
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Service @Service
@AllArgsConstructor @AllArgsConstructor

View File

@ -9,6 +9,7 @@ import org.springframework.stereotype.Service;
* 短信验证码效验 * 短信验证码效验
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Service @Service
@AllArgsConstructor @AllArgsConstructor

View File

@ -13,6 +13,7 @@ import org.springframework.stereotype.Service;
* 账号登录 UserDetailsService * 账号登录 UserDetailsService
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Service @Service
@AllArgsConstructor @AllArgsConstructor

View File

@ -13,6 +13,7 @@ import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
* 本地资源映射配置 * 本地资源映射配置
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Configuration @Configuration
@ConditionalOnProperty(prefix = "storage", value = "enabled") @ConditionalOnProperty(prefix = "storage", value = "enabled")

View File

@ -12,6 +12,8 @@ import org.springframework.context.annotation.Configuration;
* 存储配置文件 * 存储配置文件
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
* <a href="https://maku.net">MAKU</a>
*/ */
@Configuration @Configuration
@EnableConfigurationProperties(StorageProperties.class) @EnableConfigurationProperties(StorageProperties.class)

View File

@ -4,6 +4,7 @@ package net.maku.storage.enums;
* 存储类型枚举 * 存储类型枚举
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public enum StorageTypeEnum { public enum StorageTypeEnum {
/** /**

View File

@ -6,6 +6,7 @@ import lombok.Data;
* 阿里云存储配置项 * 阿里云存储配置项
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
public class AliyunStorageProperties { public class AliyunStorageProperties {

View File

@ -6,6 +6,7 @@ import lombok.Data;
* 华为云存储配置项 * 华为云存储配置项
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
public class HuaweiStorageProperties { public class HuaweiStorageProperties {

View File

@ -6,6 +6,7 @@ import lombok.Data;
* 本地存储配置项 * 本地存储配置项
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
public class LocalStorageProperties { public class LocalStorageProperties {

View File

@ -6,6 +6,7 @@ import lombok.Data;
* Minio存储配置项 * Minio存储配置项
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
public class MinioStorageProperties { public class MinioStorageProperties {

View File

@ -6,6 +6,7 @@ import lombok.Data;
* 七牛云存储配置项 * 七牛云存储配置项
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
public class QiniuStorageProperties { public class QiniuStorageProperties {

View File

@ -9,6 +9,7 @@ import org.springframework.context.annotation.Bean;
* 存储配置项 * 存储配置项
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
@ConfigurationProperties(prefix = "storage") @ConfigurationProperties(prefix = "storage")

View File

@ -6,6 +6,7 @@ import lombok.Data;
* 腾讯云存储配置项 * 腾讯云存储配置项
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
public class TencentStorageProperties { public class TencentStorageProperties {

View File

@ -12,6 +12,7 @@ import java.io.InputStream;
* 阿里云存储 * 阿里云存储
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public class AliyunStorageService extends StorageService { public class AliyunStorageService extends StorageService {

View File

@ -11,6 +11,7 @@ import java.io.InputStream;
* 华为云存储 * 华为云存储
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public class HuaweiStorageService extends StorageService { public class HuaweiStorageService extends StorageService {

View File

@ -14,6 +14,7 @@ import java.nio.file.Files;
* 本地存储 * 本地存储
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public class LocalStorageService extends StorageService { public class LocalStorageService extends StorageService {

View File

@ -14,6 +14,7 @@ import java.io.InputStream;
* Minio存储 * Minio存储
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public class MinioStorageService extends StorageService { public class MinioStorageService extends StorageService {
private final MinioClient minioClient; private final MinioClient minioClient;

View File

@ -16,6 +16,7 @@ import java.io.InputStream;
* 七牛云存储 * 七牛云存储
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public class QiniuStorageService extends StorageService { public class QiniuStorageService extends StorageService {
private final UploadManager uploadManager; private final UploadManager uploadManager;

View File

@ -12,6 +12,7 @@ import java.util.Date;
* 存储服务 * 存储服务
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public abstract class StorageService { public abstract class StorageService {
public StorageProperties properties; public StorageProperties properties;

View File

@ -19,6 +19,7 @@ import java.io.InputStream;
* 腾讯云存储 * 腾讯云存储
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
public class TencentStorageService extends StorageService { public class TencentStorageService extends StorageService {
private final COSCredentials cred; private final COSCredentials cred;

View File

@ -11,6 +11,7 @@ import java.io.InputStream;
* 存储服务Api * 存储服务Api
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Component @Component
@AllArgsConstructor @AllArgsConstructor

View File

@ -14,6 +14,7 @@ import java.util.stream.Collectors;
* 参数管理 Cache * 参数管理 Cache
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Service @Service
@AllArgsConstructor @AllArgsConstructor

View File

@ -7,6 +7,7 @@ import org.springframework.web.bind.annotation.RestController;
* 首页 欢迎信息 * 首页 欢迎信息
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
public class IndexController { public class IndexController {

View File

@ -19,6 +19,7 @@ import java.util.List;
* 附件管理 * 附件管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("sys/attachment") @RequestMapping("sys/attachment")

View File

@ -18,6 +18,7 @@ import org.springframework.web.bind.annotation.*;
* 认证管理 * 认证管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("sys/auth") @RequestMapping("sys/auth")

View File

@ -21,6 +21,7 @@ import java.util.List;
* 字典数据 * 字典数据
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("sys/dict/data") @RequestMapping("sys/dict/data")

View File

@ -22,6 +22,7 @@ import java.util.List;
* 字典类型 * 字典类型
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("sys/dict/type") @RequestMapping("sys/dict/type")

View File

@ -16,6 +16,7 @@ import org.springframework.web.multipart.MultipartFile;
* 文件上传 * 文件上传
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("sys/file") @RequestMapping("sys/file")

View File

@ -19,6 +19,7 @@ import org.springframework.web.bind.annotation.RestController;
* 登录日志 * 登录日志
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("sys/log/login") @RequestMapping("sys/log/login")

View File

@ -24,6 +24,7 @@ import java.util.Set;
* 菜单管理 * 菜单管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("sys/menu") @RequestMapping("sys/menu")

View File

@ -19,6 +19,7 @@ import java.util.List;
* 机构管理 * 机构管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("sys/org") @RequestMapping("sys/org")

View File

@ -21,6 +21,7 @@ import java.util.List;
* 参数管理 * 参数管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("sys/params") @RequestMapping("sys/params")

View File

@ -22,6 +22,7 @@ import java.util.List;
* 岗位管理 * 岗位管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("sys/post") @RequestMapping("sys/post")

View File

@ -27,6 +27,7 @@ import java.util.List;
* 角色管理 * 角色管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("sys/role") @RequestMapping("sys/role")

View File

@ -30,6 +30,7 @@ import java.util.List;
* 用户管理 * 用户管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@RestController @RestController
@RequestMapping("sys/user") @RequestMapping("sys/user")

View File

@ -11,6 +11,7 @@ import java.util.List;
* 附件管理 * 附件管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Mapper @Mapper
public interface SysAttachmentConvert { public interface SysAttachmentConvert {

View File

@ -11,6 +11,7 @@ import java.util.List;
* 登录日志 * 登录日志
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Mapper @Mapper
public interface SysLogLoginConvert { public interface SysLogLoginConvert {

View File

@ -11,6 +11,7 @@ import java.util.List;
* 参数管理 * 参数管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Mapper @Mapper
public interface SysParamsConvert { public interface SysParamsConvert {

View File

@ -8,6 +8,7 @@ import org.apache.ibatis.annotations.Mapper;
* 附件管理 * 附件管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Mapper @Mapper
public interface SysAttachmentDao extends BaseDao<SysAttachmentEntity> { public interface SysAttachmentDao extends BaseDao<SysAttachmentEntity> {

View File

@ -13,6 +13,7 @@ import java.util.List;
* 字典数据 * 字典数据
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Mapper @Mapper
public interface SysDictDataDao extends BaseDao<SysDictDataEntity> { public interface SysDictDataDao extends BaseDao<SysDictDataEntity> {

View File

@ -8,6 +8,7 @@ import org.apache.ibatis.annotations.Mapper;
* 字典类型 * 字典类型
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Mapper @Mapper
public interface SysDictTypeDao extends BaseDao<SysDictTypeEntity> { public interface SysDictTypeDao extends BaseDao<SysDictTypeEntity> {

View File

@ -8,6 +8,7 @@ import org.apache.ibatis.annotations.Mapper;
* 登录日志 * 登录日志
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Mapper @Mapper
public interface SysLogLoginDao extends BaseDao<SysLogLoginEntity> { public interface SysLogLoginDao extends BaseDao<SysLogLoginEntity> {

View File

@ -11,6 +11,7 @@ import java.util.List;
* 菜单管理 * 菜单管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Mapper @Mapper
public interface SysMenuDao extends BaseDao<SysMenuEntity> { public interface SysMenuDao extends BaseDao<SysMenuEntity> {

View File

@ -11,6 +11,7 @@ import java.util.Map;
* 机构管理 * 机构管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Mapper @Mapper
public interface SysOrgDao extends BaseDao<SysOrgEntity> { public interface SysOrgDao extends BaseDao<SysOrgEntity> {

View File

@ -9,6 +9,7 @@ import org.apache.ibatis.annotations.Mapper;
* 参数管理 * 参数管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Mapper @Mapper
public interface SysParamsDao extends BaseDao<SysParamsEntity> { public interface SysParamsDao extends BaseDao<SysParamsEntity> {

View File

@ -9,6 +9,7 @@ import org.apache.ibatis.annotations.Param;
* 角色管理 * 角色管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Mapper @Mapper
public interface SysRoleDao extends BaseDao<SysRoleEntity> { public interface SysRoleDao extends BaseDao<SysRoleEntity> {

View File

@ -11,6 +11,7 @@ import java.util.List;
* 角色数据权限 * 角色数据权限
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Mapper @Mapper
public interface SysRoleDataScopeDao extends BaseDao<SysRoleDataScopeEntity> { public interface SysRoleDataScopeDao extends BaseDao<SysRoleDataScopeEntity> {

View File

@ -11,6 +11,7 @@ import java.util.List;
* 角色与菜单对应关系 * 角色与菜单对应关系
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Mapper @Mapper
public interface SysRoleMenuDao extends BaseDao<SysRoleMenuEntity> { public interface SysRoleMenuDao extends BaseDao<SysRoleMenuEntity> {

View File

@ -13,6 +13,7 @@ import java.util.Map;
* 系统用户 * 系统用户
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Mapper @Mapper
public interface SysUserDao extends BaseDao<SysUserEntity> { public interface SysUserDao extends BaseDao<SysUserEntity> {

View File

@ -11,6 +11,7 @@ import java.util.List;
* 用户角色关系 * 用户角色关系
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Mapper @Mapper
public interface SysUserRoleDao extends BaseDao<SysUserRoleEntity> { public interface SysUserRoleDao extends BaseDao<SysUserRoleEntity> {

View File

@ -9,6 +9,7 @@ import net.maku.framework.mybatis.entity.BaseEntity;
* 附件管理 * 附件管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = false) @EqualsAndHashCode(callSuper = false)

View File

@ -9,6 +9,7 @@ import net.maku.framework.mybatis.entity.BaseEntity;
* 数据字典 * 数据字典
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = false) @EqualsAndHashCode(callSuper = false)

View File

@ -9,6 +9,7 @@ import net.maku.framework.mybatis.entity.BaseEntity;
* 字典类型 * 字典类型
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = false) @EqualsAndHashCode(callSuper = false)

View File

@ -12,6 +12,7 @@ import java.util.Date;
* 登录日志 * 登录日志
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
@TableName("sys_log_login") @TableName("sys_log_login")

View File

@ -9,6 +9,7 @@ import net.maku.framework.mybatis.entity.BaseEntity;
* 菜单管理 * 菜单管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
@EqualsAndHashCode(callSuper=false) @EqualsAndHashCode(callSuper=false)

View File

@ -10,6 +10,7 @@ import net.maku.framework.mybatis.entity.BaseEntity;
* 机构管理 * 机构管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
@EqualsAndHashCode(callSuper=false) @EqualsAndHashCode(callSuper=false)

View File

@ -9,6 +9,7 @@ import net.maku.framework.mybatis.entity.BaseEntity;
* 参数管理 * 参数管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = false) @EqualsAndHashCode(callSuper = false)

View File

@ -9,6 +9,7 @@ import net.maku.framework.mybatis.entity.BaseEntity;
* 岗位管理 * 岗位管理
* *
* @author 阿沐 babamu@126.com * @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/ */
@Data @Data
@EqualsAndHashCode(callSuper=false) @EqualsAndHashCode(callSuper=false)

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