This commit is contained in:
zc
2026-02-27 10:50:07 +08:00
parent 0ee56404c2
commit 86527b9c21
611 changed files with 2741 additions and 2752 deletions

View File

@@ -3,11 +3,11 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>top.ysoft</groupId>
<artifactId>ysoft-plugin</artifactId>
<groupId>top.wms</groupId>
<artifactId>wms-plugin</artifactId>
<version>3.6.0-SNAPSHOT</version>
</parent>
<artifactId>ysoft-plugin-open</artifactId>
<artifactId>wms-plugin-open</artifactId>
<version>3.6.0-SNAPSHOT</version>
<description>能力开放插件包括应用管理、API开放授权、API开发等</description>
<licenses>

View File

@@ -4,11 +4,11 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>top.ysoft</groupId>
<artifactId>ysoft-plugin</artifactId>
<groupId>top.wms</groupId>
<artifactId>wms-plugin</artifactId>
<version>${revision}</version>
</parent>
<artifactId>ysoft-plugin-open</artifactId>
<artifactId>wms-plugin-open</artifactId>
<description>能力开放插件包括应用管理、API开放授权、API开发等</description>
</project>

View File

@@ -1,9 +1,9 @@
package top.ysoft.admin.open.handler;
package top.wms.admin.open.handler;
import cn.dev33.satoken.annotation.SaCheckPermission;
import cn.dev33.satoken.annotation.handler.SaAnnotationHandlerInterface;
import org.springframework.stereotype.Component;
import top.ysoft.admin.open.util.OpenApiUtils;
import top.wms.admin.open.util.OpenApiUtils;
import java.lang.reflect.Method;

View File

@@ -1,8 +1,8 @@
package top.ysoft.admin.open.mapper;
package top.wms.admin.open.mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import top.ysoft.admin.open.model.entity.AppDO;
import top.wms.admin.open.model.entity.AppDO;
import top.continew.starter.data.mp.base.BaseMapper;
import top.continew.starter.security.crypto.annotation.FieldEncrypt;

View File

@@ -1,9 +1,9 @@
package top.ysoft.admin.open.model.entity;
package top.wms.admin.open.model.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import top.ysoft.admin.common.enums.DisEnableStatusEnum;
import top.ysoft.admin.common.model.entity.BaseDO;
import top.wms.admin.common.enums.DisEnableStatusEnum;
import top.wms.admin.common.model.entity.BaseDO;
import top.continew.starter.security.crypto.annotation.FieldEncrypt;
import java.io.Serial;

View File

@@ -1,4 +1,4 @@
package top.ysoft.admin.open.model.query;
package top.wms.admin.open.model.query;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;

View File

@@ -1,11 +1,11 @@
package top.ysoft.admin.open.model.req;
package top.wms.admin.open.model.req;
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.Future;
import jakarta.validation.constraints.NotBlank;
import lombok.Data;
import org.hibernate.validator.constraints.Length;
import top.ysoft.admin.common.enums.DisEnableStatusEnum;
import top.wms.admin.common.enums.DisEnableStatusEnum;
import java.io.Serial;
import java.io.Serializable;

View File

@@ -1,11 +1,11 @@
package top.ysoft.admin.open.model.resp;
package top.wms.admin.open.model.resp;
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import top.ysoft.admin.common.model.resp.BaseDetailResp;
import top.ysoft.admin.common.enums.DisEnableStatusEnum;
import top.wms.admin.common.model.resp.BaseDetailResp;
import top.wms.admin.common.enums.DisEnableStatusEnum;
import top.continew.starter.file.excel.converter.ExcelBaseEnumConverter;
import java.io.Serial;

View File

@@ -1,9 +1,9 @@
package top.ysoft.admin.open.model.resp;
package top.wms.admin.open.model.resp;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import top.ysoft.admin.common.model.resp.BaseDetailResp;
import top.ysoft.admin.common.enums.DisEnableStatusEnum;
import top.wms.admin.common.model.resp.BaseDetailResp;
import top.wms.admin.common.enums.DisEnableStatusEnum;
import java.io.Serial;
import java.time.LocalDateTime;

View File

@@ -1,4 +1,4 @@
package top.ysoft.admin.open.model.resp;
package top.wms.admin.open.model.resp;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;

View File

@@ -1,11 +1,11 @@
package top.ysoft.admin.open.service;
package top.wms.admin.open.service;
import top.ysoft.admin.open.model.entity.AppDO;
import top.ysoft.admin.open.model.query.AppQuery;
import top.ysoft.admin.open.model.req.AppReq;
import top.ysoft.admin.open.model.resp.AppDetailResp;
import top.ysoft.admin.open.model.resp.AppResp;
import top.ysoft.admin.open.model.resp.AppSecretResp;
import top.wms.admin.open.model.entity.AppDO;
import top.wms.admin.open.model.query.AppQuery;
import top.wms.admin.open.model.req.AppReq;
import top.wms.admin.open.model.resp.AppDetailResp;
import top.wms.admin.open.model.resp.AppResp;
import top.wms.admin.open.model.resp.AppSecretResp;
import top.continew.starter.extension.crud.service.BaseService;
/**

View File

@@ -1,18 +1,18 @@
package top.ysoft.admin.open.service.impl;
package top.wms.admin.open.service.impl;
import cn.hutool.core.codec.Base64;
import cn.hutool.core.util.IdUtil;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;
import top.ysoft.admin.open.mapper.AppMapper;
import top.ysoft.admin.open.model.entity.AppDO;
import top.ysoft.admin.open.model.query.AppQuery;
import top.ysoft.admin.open.model.req.AppReq;
import top.ysoft.admin.open.model.resp.AppDetailResp;
import top.ysoft.admin.open.model.resp.AppResp;
import top.ysoft.admin.open.model.resp.AppSecretResp;
import top.ysoft.admin.open.service.AppService;
import top.wms.admin.open.mapper.AppMapper;
import top.wms.admin.open.model.entity.AppDO;
import top.wms.admin.open.model.query.AppQuery;
import top.wms.admin.open.model.req.AppReq;
import top.wms.admin.open.model.resp.AppDetailResp;
import top.wms.admin.open.model.resp.AppResp;
import top.wms.admin.open.model.resp.AppSecretResp;
import top.wms.admin.open.service.AppService;
import top.continew.starter.core.constant.StringConstants;
import top.continew.starter.extension.crud.service.BaseServiceImpl;

View File

@@ -1,11 +1,11 @@
package top.ysoft.admin.open.sign;
package top.wms.admin.open.sign;
import cn.dev33.satoken.sign.SaSignTemplate;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Component;
import top.ysoft.admin.common.enums.DisEnableStatusEnum;
import top.ysoft.admin.open.model.entity.AppDO;
import top.ysoft.admin.open.service.AppService;
import top.wms.admin.common.enums.DisEnableStatusEnum;
import top.wms.admin.open.model.entity.AppDO;
import top.wms.admin.open.service.AppService;
import top.continew.starter.core.validation.ValidationUtils;
import java.util.Map;

View File

@@ -1,4 +1,4 @@
package top.ysoft.admin.open.util;
package top.wms.admin.open.util;
import cn.dev33.satoken.context.SaHolder;
import cn.dev33.satoken.context.model.SaRequest;