修改注释

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
*
* @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/
public interface SmsApi {

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -10,6 +10,7 @@ import org.quartz.*;
* 定时任务工具类
*
* @author 阿沐 babamu@126.com
* <a href="https://maku.net">MAKU</a>
*/
public class ScheduleUtils {
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
* <a href="https://maku.net">MAKU</a>
*/
@RestController
@RequestMapping("new/test")

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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