😎清理非必要特性[SuppressSniffer]
This commit is contained in:
parent
be89e2f4d9
commit
066b253d17
@ -49,7 +49,7 @@
|
||||
<PackageReference Include="SSH.NET" Version="2024.2.0" />
|
||||
<PackageReference Include="System.Linq.Dynamic.Core" Version="1.5.1" />
|
||||
<PackageReference Include="System.Net.Http" Version="4.3.4" />
|
||||
<PackageReference Include="TencentCloudSDK.Sms" Version="3.0.1152" />
|
||||
<PackageReference Include="TencentCloudSDK.Sms" Version="3.0.1153" />
|
||||
<PackageReference Include="UAParser" Version="3.1.47" />
|
||||
<PackageReference Include="Yitter.IdGenerator" Version="1.0.14" />
|
||||
</ItemGroup>
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// APP接口特性
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
|
||||
public class AppApiDescriptionAttribute : Attribute
|
||||
{
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 常量特性
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)]
|
||||
public class ConstAttribute : Attribute
|
||||
{
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 自定义规范化结果特性
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)]
|
||||
public class CustomUnifyResultAttribute : Attribute
|
||||
{
|
||||
|
||||
@ -9,9 +9,8 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 字典值合规性校验特性
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = true, Inherited = true)]
|
||||
public class DictAttribute : ValidationAttribute, ITransient
|
||||
public class DictAttribute : ValidationAttribute
|
||||
{
|
||||
/// <summary>
|
||||
/// 字典编码
|
||||
|
||||
@ -11,7 +11,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 防止重复请求过滤器特性
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)]
|
||||
public class IdempotentAttribute : Attribute, IAsyncActionFilter
|
||||
{
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 忽略表结构初始化特性(标记在实体)
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
|
||||
public class IgnoreTableAttribute : Attribute
|
||||
{
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 忽略更新种子特性(标记在种子类)
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
|
||||
public class IgnoreUpdateSeedAttribute : Attribute
|
||||
{
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 忽略更新种子列特性(标记在实体属性)
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.Property, AllowMultiple = true, Inherited = true)]
|
||||
public class IgnoreUpdateSeedColumnAttribute : Attribute
|
||||
{
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 增量种子特性
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
|
||||
public class IncreSeedAttribute : Attribute
|
||||
{
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 增量表特性
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
|
||||
public class IncreTableAttribute : Attribute
|
||||
{
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 日志表特性
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
|
||||
public class LogTableAttribute : Attribute
|
||||
{
|
||||
|
||||
@ -11,7 +11,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 字符串掩码
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class MaskNewtonsoftJsonConverter : JsonConverter<string>
|
||||
{
|
||||
public override string ReadJson(JsonReader reader, Type objectType, string existingValue, bool hasExistingValue, JsonSerializer serializer)
|
||||
@ -28,7 +27,6 @@ public class MaskNewtonsoftJsonConverter : JsonConverter<string>
|
||||
/// <summary>
|
||||
/// 身份证掩码
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class MaskIdCardNewtonsoftJsonConverter : JsonConverter<string>
|
||||
{
|
||||
public override string ReadJson(JsonReader reader, Type objectType, string existingValue, bool hasExistingValue, JsonSerializer serializer)
|
||||
@ -45,7 +43,6 @@ public class MaskIdCardNewtonsoftJsonConverter : JsonConverter<string>
|
||||
/// <summary>
|
||||
/// 邮箱掩码
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class MaskEmailNewtonsoftJsonConverter : JsonConverter<string>
|
||||
{
|
||||
public override string ReadJson(JsonReader reader, Type objectType, string existingValue, bool hasExistingValue, JsonSerializer serializer)
|
||||
|
||||
@ -12,7 +12,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 字符串掩码
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class MaskSystemTextJsonConverter : JsonConverter<string>
|
||||
{
|
||||
public override string Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
||||
@ -29,7 +28,6 @@ public class MaskSystemTextJsonConverter : JsonConverter<string>
|
||||
/// <summary>
|
||||
/// 身份证掩码
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class MaskIdCardSystemTextJsonConverter : JsonConverter<string>
|
||||
{
|
||||
public override string Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
||||
@ -46,7 +44,6 @@ public class MaskIdCardSystemTextJsonConverter : JsonConverter<string>
|
||||
/// <summary>
|
||||
/// 邮箱掩码
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class MaskEmailSystemTextJsonConverter : JsonConverter<string>
|
||||
{
|
||||
public override string Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 最大值校验
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class MaxValueAttribute : ValidationAttribute
|
||||
{
|
||||
private double MaxValue { get; }
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 最小值校验
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class MinValueAttribute : ValidationAttribute
|
||||
{
|
||||
private double MinValue { get; set; }
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 校验集合不能为空
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class NotEmptyAttribute : ValidationAttribute
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 所属机构数据权限
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.Property, AllowMultiple = true, Inherited = true)]
|
||||
public class OwnerOrgAttribute : Attribute
|
||||
{
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 所属用户数据权限
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.Property, AllowMultiple = true, Inherited = true)]
|
||||
public class OwnerUserAttribute : Attribute
|
||||
{
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 种子数据特性
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
|
||||
public class SeedDataAttribute : Attribute
|
||||
{
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 系统表特性
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
|
||||
public class SysTableAttribute : Attribute
|
||||
{
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 租户种子数据特性(种子Id不要设置值)
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
|
||||
public class TenantSeedAttribute : Attribute
|
||||
{
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 枚举拓展主题样式
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[AttributeUsage(AttributeTargets.Enum | AttributeTargets.Field)]
|
||||
public class ThemeAttribute : Attribute
|
||||
{
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 支付宝支付常量
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class AlipayConst
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 参与方的证件类型枚举
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[Description("参与方的证件类型枚举")]
|
||||
public enum AlipayCertTypeEnum
|
||||
{
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 参与方的标识类型枚举
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[Description("参与方的标识类型枚举")]
|
||||
public enum AlipayIdentityTypeEnum
|
||||
{
|
||||
|
||||
@ -9,7 +9,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 事件类型-系统用户操作枚举
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
[Description("事件类型-系统用户操作枚举")]
|
||||
public enum SysUserEventTypeEnum
|
||||
{
|
||||
|
||||
@ -11,7 +11,6 @@ namespace Admin.NET.Core;
|
||||
/// <summary>
|
||||
/// 对象拓展
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public static partial class ObjectExtension
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@ -24,7 +24,7 @@ public class SysCacheService : IDynamicApiController, ISingleton
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 申请分布式锁
|
||||
/// 申请分布式锁 🔖
|
||||
/// </summary>
|
||||
/// <param name="key">要锁定的key</param>
|
||||
/// <param name="msTimeout">申请锁等待的时间,单位毫秒</param>
|
||||
|
||||
@ -20,7 +20,7 @@ public class SysCodeGenTemplateService : IDynamicApiController, ITransient
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取代码生成模板配置列表
|
||||
/// 获取代码生成模板配置列表 🔖
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[DisplayName("获取代码生成模板配置列表")]
|
||||
|
||||
@ -155,7 +155,7 @@ public class SysCommonService : IDynamicApiController, ITransient
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取所有移动端接口
|
||||
/// 获取所有移动端接口 🔖
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[DisplayName("获取所有移动端接口")]
|
||||
|
||||
@ -458,7 +458,7 @@ public class SysFileService : IDynamicApiController, ITransient
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 根据关联查询附件
|
||||
/// 根据关联查询附件 🔖
|
||||
/// </summary>
|
||||
/// <param name="input"></param>
|
||||
/// <returns></returns>
|
||||
|
||||
@ -44,7 +44,7 @@ public class SysSmsService : IDynamicApiController, ITransient
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 校验短信验证码
|
||||
/// 校验短信验证码 📨
|
||||
/// </summary>
|
||||
/// <param name="input"></param>
|
||||
/// <returns></returns>
|
||||
@ -104,7 +104,7 @@ public class SysSmsService : IDynamicApiController, ITransient
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 发送短信模板
|
||||
/// 发送短信模板 📨
|
||||
/// </summary>
|
||||
/// <param name="input"></param>
|
||||
/// <returns></returns>
|
||||
|
||||
@ -52,7 +52,6 @@ public class SysRegionService : IDynamicApiController, ITransient
|
||||
|
||||
/// <summary>
|
||||
/// 查询行政区划列表 🔖
|
||||
/// post参数方便参数扩展,调用api不用大浮动修复,参数如果是对象不建议用[FromQuery]方式传参
|
||||
/// </summary>
|
||||
/// <param name="input"></param>
|
||||
/// <returns></returns>
|
||||
|
||||
@ -399,7 +399,7 @@ public class SysUserService : IDynamicApiController, ITransient
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 验证密码有效期
|
||||
/// 验证密码有效期 🔖
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
[DisplayName("验证密码有效期")]
|
||||
|
||||
@ -131,7 +131,7 @@ public class SysWechatPayService : IDynamicApiController, ITransient
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 微信支付统一下单(商户直连)Native
|
||||
/// 微信支付统一下单(商户直连)Native 🔖
|
||||
/// </summary>
|
||||
[DisplayName("微信支付统一下单(商户直连)Native")]
|
||||
public async Task<CreatePayTransactionNativeOutput> CreatePayTransactionNative([FromBody] WechatPayTransactionInput input)
|
||||
@ -527,7 +527,7 @@ public class SysWechatPayService : IDynamicApiController, ITransient
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 根据支付Id获取退款信息列表
|
||||
/// 根据支付Id获取退款信息列表 🔖
|
||||
/// </summary>
|
||||
/// <param name="transactionId"></param>
|
||||
/// <returns></returns>
|
||||
|
||||
@ -135,7 +135,7 @@ public class SysWxOpenService : IDynamicApiController, ITransient
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 上传小程序头像
|
||||
/// 上传小程序头像 🔖
|
||||
/// </summary>
|
||||
/// <param name="input"></param>
|
||||
/// <returns></returns>
|
||||
@ -155,7 +155,7 @@ public class SysWxOpenService : IDynamicApiController, ITransient
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 设置小程序用户昵称
|
||||
/// 设置小程序用户昵称 🔖
|
||||
/// </summary>
|
||||
/// <param name="input"></param>
|
||||
/// <returns></returns>
|
||||
@ -172,7 +172,7 @@ public class SysWxOpenService : IDynamicApiController, ITransient
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 获取小程序用户信息
|
||||
/// 获取小程序用户信息 🔖
|
||||
/// </summary>
|
||||
/// <param name="openid"></param>
|
||||
/// <returns></returns>
|
||||
|
||||
@ -29,7 +29,7 @@ export const SysCacheApiAxiosParamCreator = function (configuration?: Configurat
|
||||
return {
|
||||
/**
|
||||
*
|
||||
* @summary 申请分布式锁
|
||||
* @summary 申请分布式锁 🔖
|
||||
* @param {string} key 要锁定的key
|
||||
* @param {number} msTimeout 申请锁等待的时间,单位毫秒
|
||||
* @param {number} msExpire 锁过期时间,超过该时间没有主动是放则自动是放,必须整数秒,单位毫秒
|
||||
@ -387,7 +387,7 @@ export const SysCacheApiFp = function(configuration?: Configuration) {
|
||||
return {
|
||||
/**
|
||||
*
|
||||
* @summary 申请分布式锁
|
||||
* @summary 申请分布式锁 🔖
|
||||
* @param {string} key 要锁定的key
|
||||
* @param {number} msTimeout 申请锁等待的时间,单位毫秒
|
||||
* @param {number} msExpire 锁过期时间,超过该时间没有主动是放则自动是放,必须整数秒,单位毫秒
|
||||
@ -495,7 +495,7 @@ export const SysCacheApiFactory = function (configuration?: Configuration, baseP
|
||||
return {
|
||||
/**
|
||||
*
|
||||
* @summary 申请分布式锁
|
||||
* @summary 申请分布式锁 🔖
|
||||
* @param {string} key 要锁定的key
|
||||
* @param {number} msTimeout 申请锁等待的时间,单位毫秒
|
||||
* @param {number} msExpire 锁过期时间,超过该时间没有主动是放则自动是放,必须整数秒,单位毫秒
|
||||
@ -576,7 +576,7 @@ export const SysCacheApiFactory = function (configuration?: Configuration, baseP
|
||||
export class SysCacheApi extends BaseAPI {
|
||||
/**
|
||||
*
|
||||
* @summary 申请分布式锁
|
||||
* @summary 申请分布式锁 🔖
|
||||
* @param {string} key 要锁定的key
|
||||
* @param {number} msTimeout 申请锁等待的时间,单位毫秒
|
||||
* @param {number} msExpire 锁过期时间,超过该时间没有主动是放则自动是放,必须整数秒,单位毫秒
|
||||
|
||||
@ -26,7 +26,7 @@ export const SysCodeGenTemplateApiAxiosParamCreator = function (configuration?:
|
||||
return {
|
||||
/**
|
||||
*
|
||||
* @summary 获取代码生成模板配置列表
|
||||
* @summary 获取代码生成模板配置列表 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
@ -78,7 +78,7 @@ export const SysCodeGenTemplateApiFp = function(configuration?: Configuration) {
|
||||
return {
|
||||
/**
|
||||
*
|
||||
* @summary 获取代码生成模板配置列表
|
||||
* @summary 获取代码生成模板配置列表 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
@ -100,7 +100,7 @@ export const SysCodeGenTemplateApiFactory = function (configuration?: Configurat
|
||||
return {
|
||||
/**
|
||||
*
|
||||
* @summary 获取代码生成模板配置列表
|
||||
* @summary 获取代码生成模板配置列表 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
@ -119,7 +119,7 @@ export const SysCodeGenTemplateApiFactory = function (configuration?: Configurat
|
||||
export class SysCodeGenTemplateApi extends BaseAPI {
|
||||
/**
|
||||
*
|
||||
* @summary 获取代码生成模板配置列表
|
||||
* @summary 获取代码生成模板配置列表 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
* @memberof SysCodeGenTemplateApi
|
||||
|
||||
@ -85,7 +85,7 @@ export const SysCommonApiAxiosParamCreator = function (configuration?: Configura
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 获取所有移动端接口
|
||||
* @summary 获取所有移动端接口 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
@ -487,7 +487,7 @@ export const SysCommonApiFp = function(configuration?: Configuration) {
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 获取所有移动端接口
|
||||
* @summary 获取所有移动端接口 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
@ -617,7 +617,7 @@ export const SysCommonApiFactory = function (configuration?: Configuration, base
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 获取所有移动端接口
|
||||
* @summary 获取所有移动端接口 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
@ -717,7 +717,7 @@ export class SysCommonApi extends BaseAPI {
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @summary 获取所有移动端接口
|
||||
* @summary 获取所有移动端接口 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
* @memberof SysCommonApi
|
||||
|
||||
@ -367,7 +367,7 @@ export const SysFileApiAxiosParamCreator = function (configuration?: Configurati
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 根据关联查询附件
|
||||
* @summary 根据关联查询附件 🔖
|
||||
* @param {string} [relationName] 关联对象名称
|
||||
* @param {number} [relationId] 关联对象Id
|
||||
* @param {string} [fileTypes] 文件类型:多个以\",\"分割
|
||||
@ -866,7 +866,7 @@ export const SysFileApiFp = function(configuration?: Configuration) {
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 根据关联查询附件
|
||||
* @summary 根据关联查询附件 🔖
|
||||
* @param {string} [relationName] 关联对象名称
|
||||
* @param {number} [relationId] 关联对象Id
|
||||
* @param {string} [fileTypes] 文件类型:多个以\",\"分割
|
||||
@ -1050,7 +1050,7 @@ export const SysFileApiFactory = function (configuration?: Configuration, basePa
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 根据关联查询附件
|
||||
* @summary 根据关联查询附件 🔖
|
||||
* @param {string} [relationName] 关联对象名称
|
||||
* @param {number} [relationId] 关联对象Id
|
||||
* @param {string} [fileTypes] 文件类型:多个以\",\"分割
|
||||
@ -1214,7 +1214,7 @@ export class SysFileApi extends BaseAPI {
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @summary 根据关联查询附件
|
||||
* @summary 根据关联查询附件 🔖
|
||||
* @param {string} [relationName] 关联对象名称
|
||||
* @param {number} [relationId] 关联对象Id
|
||||
* @param {string} [fileTypes] 文件类型:多个以\",\"分割
|
||||
|
||||
@ -280,7 +280,7 @@ export const SysRegionApiAxiosParamCreator = function (configuration?: Configura
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 查询行政区划列表 🔖 post参数方便参数扩展,调用api不用大浮动修复,参数如果是对象不建议用[FromQuery]方式传参
|
||||
* @summary 查询行政区划列表 🔖
|
||||
* @param {QueryRegionInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -644,7 +644,7 @@ export const SysRegionApiFp = function(configuration?: Configuration) {
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 查询行政区划列表 🔖 post参数方便参数扩展,调用api不用大浮动修复,参数如果是对象不建议用[FromQuery]方式传参
|
||||
* @summary 查询行政区划列表 🔖
|
||||
* @param {QueryRegionInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -786,7 +786,7 @@ export const SysRegionApiFactory = function (configuration?: Configuration, base
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 查询行政区划列表 🔖 post参数方便参数扩展,调用api不用大浮动修复,参数如果是对象不建议用[FromQuery]方式传参
|
||||
* @summary 查询行政区划列表 🔖
|
||||
* @param {QueryRegionInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -910,7 +910,7 @@ export class SysRegionApi extends BaseAPI {
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @summary 查询行政区划列表 🔖 post参数方便参数扩展,调用api不用大浮动修复,参数如果是对象不建议用[FromQuery]方式传参
|
||||
* @summary 查询行政区划列表 🔖
|
||||
* @param {QueryRegionInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
|
||||
@ -77,7 +77,7 @@ export const SysSmsApiAxiosParamCreator = function (configuration?: Configuratio
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 发送短信模板
|
||||
* @summary 发送短信模板 📨
|
||||
* @param {AliyunSendSmsTemplateInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -223,7 +223,7 @@ export const SysSmsApiAxiosParamCreator = function (configuration?: Configuratio
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 校验短信验证码
|
||||
* @summary 校验短信验证码 📨
|
||||
* @param {SmsVerifyCodeInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -294,7 +294,7 @@ export const SysSmsApiFp = function(configuration?: Configuration) {
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 发送短信模板
|
||||
* @summary 发送短信模板 📨
|
||||
* @param {AliyunSendSmsTemplateInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -336,7 +336,7 @@ export const SysSmsApiFp = function(configuration?: Configuration) {
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 校验短信验证码
|
||||
* @summary 校验短信验证码 📨
|
||||
* @param {SmsVerifyCodeInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -369,7 +369,7 @@ export const SysSmsApiFactory = function (configuration?: Configuration, basePat
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 发送短信模板
|
||||
* @summary 发送短信模板 📨
|
||||
* @param {AliyunSendSmsTemplateInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -399,7 +399,7 @@ export const SysSmsApiFactory = function (configuration?: Configuration, basePat
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 校验短信验证码
|
||||
* @summary 校验短信验证码 📨
|
||||
* @param {SmsVerifyCodeInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -430,7 +430,7 @@ export class SysSmsApi extends BaseAPI {
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @summary 发送短信模板
|
||||
* @summary 发送短信模板 📨
|
||||
* @param {AliyunSendSmsTemplateInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -463,7 +463,7 @@ export class SysSmsApi extends BaseAPI {
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @summary 校验短信验证码
|
||||
* @summary 校验短信验证码 📨
|
||||
* @param {SmsVerifyCodeInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
|
||||
@ -664,7 +664,7 @@ export const SysUserApiAxiosParamCreator = function (configuration?: Configurati
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 验证密码有效期
|
||||
* @summary 验证密码有效期 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
@ -897,7 +897,7 @@ export const SysUserApiFp = function(configuration?: Configuration) {
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 验证密码有效期
|
||||
* @summary 验证密码有效期 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
@ -1048,7 +1048,7 @@ export const SysUserApiFactory = function (configuration?: Configuration, basePa
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 验证密码有效期
|
||||
* @summary 验证密码有效期 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
*/
|
||||
@ -1209,7 +1209,7 @@ export class SysUserApi extends BaseAPI {
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @summary 验证密码有效期
|
||||
* @summary 验证密码有效期 🔖
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
* @memberof SysUserApi
|
||||
|
||||
@ -414,7 +414,7 @@ export const SysWechatPayApiAxiosParamCreator = function (configuration?: Config
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 微信支付统一下单(商户直连)Native
|
||||
* @summary 微信支付统一下单(商户直连)Native 🔖
|
||||
* @param {WechatPayTransactionInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -559,7 +559,7 @@ export const SysWechatPayApiAxiosParamCreator = function (configuration?: Config
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 根据支付Id获取退款信息列表
|
||||
* @summary 根据支付Id获取退款信息列表 🔖
|
||||
* @param {string} [transactionId]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -774,7 +774,7 @@ export const SysWechatPayApiFp = function(configuration?: Configuration) {
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 微信支付统一下单(商户直连)Native
|
||||
* @summary 微信支付统一下单(商户直连)Native 🔖
|
||||
* @param {WechatPayTransactionInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -816,7 +816,7 @@ export const SysWechatPayApiFp = function(configuration?: Configuration) {
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 根据支付Id获取退款信息列表
|
||||
* @summary 根据支付Id获取退款信息列表 🔖
|
||||
* @param {string} [transactionId]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -931,7 +931,7 @@ export const SysWechatPayApiFactory = function (configuration?: Configuration, b
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 微信支付统一下单(商户直连)Native
|
||||
* @summary 微信支付统一下单(商户直连)Native 🔖
|
||||
* @param {WechatPayTransactionInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -961,7 +961,7 @@ export const SysWechatPayApiFactory = function (configuration?: Configuration, b
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 根据支付Id获取退款信息列表
|
||||
* @summary 根据支付Id获取退款信息列表 🔖
|
||||
* @param {string} [transactionId]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -1077,7 +1077,7 @@ export class SysWechatPayApi extends BaseAPI {
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @summary 微信支付统一下单(商户直连)Native
|
||||
* @summary 微信支付统一下单(商户直连)Native 🔖
|
||||
* @param {WechatPayTransactionInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -1110,7 +1110,7 @@ export class SysWechatPayApi extends BaseAPI {
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @summary 根据支付Id获取退款信息列表
|
||||
* @summary 根据支付Id获取退款信息列表 🔖
|
||||
* @param {string} [transactionId]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
|
||||
@ -222,7 +222,7 @@ export const SysWxOpenApiAxiosParamCreator = function (configuration?: Configura
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 设置小程序用户昵称
|
||||
* @summary 设置小程序用户昵称 🔖
|
||||
* @param {SetNickNameInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -270,7 +270,7 @@ export const SysWxOpenApiAxiosParamCreator = function (configuration?: Configura
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 上传小程序头像
|
||||
* @summary 上传小程序头像 🔖
|
||||
* @param {string} [openId]
|
||||
* @param {Blob} [file]
|
||||
* @param {string} [fileType]
|
||||
@ -337,7 +337,7 @@ export const SysWxOpenApiAxiosParamCreator = function (configuration?: Configura
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 获取小程序用户信息
|
||||
* @summary 获取小程序用户信息 🔖
|
||||
* @param {string} openid
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -674,7 +674,7 @@ export const SysWxOpenApiFp = function(configuration?: Configuration) {
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 设置小程序用户昵称
|
||||
* @summary 设置小程序用户昵称 🔖
|
||||
* @param {SetNickNameInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -688,7 +688,7 @@ export const SysWxOpenApiFp = function(configuration?: Configuration) {
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 上传小程序头像
|
||||
* @summary 上传小程序头像 🔖
|
||||
* @param {string} [openId]
|
||||
* @param {Blob} [file]
|
||||
* @param {string} [fileType]
|
||||
@ -705,7 +705,7 @@ export const SysWxOpenApiFp = function(configuration?: Configuration) {
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 获取小程序用户信息
|
||||
* @summary 获取小程序用户信息 🔖
|
||||
* @param {string} openid
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -827,7 +827,7 @@ export const SysWxOpenApiFactory = function (configuration?: Configuration, base
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 设置小程序用户昵称
|
||||
* @summary 设置小程序用户昵称 🔖
|
||||
* @param {SetNickNameInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -837,7 +837,7 @@ export const SysWxOpenApiFactory = function (configuration?: Configuration, base
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 上传小程序头像
|
||||
* @summary 上传小程序头像 🔖
|
||||
* @param {string} [openId]
|
||||
* @param {Blob} [file]
|
||||
* @param {string} [fileType]
|
||||
@ -850,7 +850,7 @@ export const SysWxOpenApiFactory = function (configuration?: Configuration, base
|
||||
},
|
||||
/**
|
||||
*
|
||||
* @summary 获取小程序用户信息
|
||||
* @summary 获取小程序用户信息 🔖
|
||||
* @param {string} openid
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -957,7 +957,7 @@ export class SysWxOpenApi extends BaseAPI {
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @summary 设置小程序用户昵称
|
||||
* @summary 设置小程序用户昵称 🔖
|
||||
* @param {SetNickNameInput} [body]
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
@ -968,7 +968,7 @@ export class SysWxOpenApi extends BaseAPI {
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @summary 上传小程序头像
|
||||
* @summary 上传小程序头像 🔖
|
||||
* @param {string} [openId]
|
||||
* @param {Blob} [file]
|
||||
* @param {string} [fileType]
|
||||
@ -982,7 +982,7 @@ export class SysWxOpenApi extends BaseAPI {
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @summary 获取小程序用户信息
|
||||
* @summary 获取小程序用户信息 🔖
|
||||
* @param {string} openid
|
||||
* @param {*} [options] Override http request option.
|
||||
* @throws {RequiredError}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user