diff --git a/Myshipping.Application/Entity/DjyBooking/DjyBooking.cs b/Myshipping.Application/Entity/DjyBooking/DjyBooking.cs
deleted file mode 100644
index a860107d..00000000
--- a/Myshipping.Application/Entity/DjyBooking/DjyBooking.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using System;
-using SqlSugar;
-using System.ComponentModel;
-using Magic.Core.Entity;
-namespace Magic.Application.Entity
-{
- ///
- /// 订舱
- ///
- [SugarTable("djy_booking")]
- [Description("订舱")]
- public class DjyBooking : DBEntityTenant
- {
- ///
- /// 提单号
- ///
- public string MBLNO { get; set; }
- ///
- /// 船公司
- ///
- public string Carrier { get; set; }
- ///
- /// 船公司 ID
- ///
- public string CarrierId { get; set; }
- }
-}
\ No newline at end of file
diff --git a/Myshipping.Application/Magic.Application.xml b/Myshipping.Application/Magic.Application.xml
deleted file mode 100644
index 323e6da8..00000000
--- a/Myshipping.Application/Magic.Application.xml
+++ /dev/null
@@ -1,170 +0,0 @@
-
-
-
- Myshipping.Application
-
-
-
-
- 订舱
-
-
-
-
- 提单号
-
-
-
-
- 船公司
-
-
-
-
- 船公司 ID
-
-
-
-
- 订舱服务
-
-
-
-
- 分页查询订舱
-
-
-
-
-
-
- 增加订舱
-
-
-
-
-
-
- 删除订舱
-
-
-
-
-
-
- 更新订舱
-
-
-
-
-
-
- 获取订舱
-
-
-
-
-
-
- 获取订舱列表
-
-
-
-
-
-
- 订舱输出参数
-
-
-
-
- 主键Id
-
-
-
-
- 提单号
-
-
-
-
- 船公司
-
-
-
-
- 船公司 ID
-
-
-
-
- 租户Id
-
-
-
-
- 订舱输入参数
-
-
-
-
- 提单号
-
-
-
-
- 船公司
-
-
-
-
- 船公司 ID
-
-
-
-
- 租户Id
-
-
-
-
- 主键Id
-
-
-
-
- 主键Id
-
-
-
-
- 订舱输出参数
-
-
-
-
- 主键Id
-
-
-
-
- 提单号
-
-
-
-
- 船公司
-
-
-
-
- 船公司 ID
-
-
-
-
- 租户Id
-
-
-
-
diff --git a/Myshipping.Application/Myshipping.Application.csproj b/Myshipping.Application/Myshipping.Application.csproj
index 50e2472d..5e6814b7 100644
--- a/Myshipping.Application/Myshipping.Application.csproj
+++ b/Myshipping.Application/Myshipping.Application.csproj
@@ -3,7 +3,7 @@
net6.0
1701;1702;1591
- Magic.Application.xml
+ Myshipping.Application.xml
@@ -18,18 +18,17 @@
-
PreserveNewest
-
-
+
+
diff --git a/Myshipping.Application/Myshipping.Application.xml b/Myshipping.Application/Myshipping.Application.xml
index 47cc128a..d8113b2a 100644
--- a/Myshipping.Application/Myshipping.Application.xml
+++ b/Myshipping.Application/Myshipping.Application.xml
@@ -1,170 +1,8 @@
- Magic.Application
+ Myshipping.Application
-
-
- 订舱
-
-
-
-
- 提单号
-
-
-
-
- 船公司
-
-
-
-
- 船公司 ID
-
-
-
-
- 订舱服务
-
-
-
-
- 分页查询订舱
-
-
-
-
-
-
- 增加订舱
-
-
-
-
-
-
- 删除订舱
-
-
-
-
-
-
- 更新订舱
-
-
-
-
-
-
- 获取订舱
-
-
-
-
-
-
- 获取订舱列表
-
-
-
-
-
-
- 订舱输出参数
-
-
-
-
- 主键Id
-
-
-
-
- 提单号
-
-
-
-
- 船公司
-
-
-
-
- 船公司 ID
-
-
-
-
- 租户Id
-
-
-
-
- 订舱输入参数
-
-
-
-
- 提单号
-
-
-
-
- 船公司
-
-
-
-
- 船公司 ID
-
-
-
-
- 租户Id
-
-
-
-
- 主键Id
-
-
-
-
- 主键Id
-
-
-
-
- 订舱输出参数
-
-
-
-
- 主键Id
-
-
-
-
- 提单号
-
-
-
-
- 船公司
-
-
-
-
- 船公司 ID
-
-
-
-
- 租户Id
-
-
diff --git a/Myshipping.Application/Service/DjyBooking/DjyBookingService.cs b/Myshipping.Application/Service/DjyBooking/DjyBookingService.cs
deleted file mode 100644
index 0609af97..00000000
--- a/Myshipping.Application/Service/DjyBooking/DjyBookingService.cs
+++ /dev/null
@@ -1,103 +0,0 @@
-using Magic.Core;
-using Furion.DependencyInjection;
-using Furion.DynamicApiController;
-using Mapster;
-using Microsoft.AspNetCore.Mvc;
-using SqlSugar;
-using System.Linq;
-using System.Threading.Tasks;
-using Magic.Application.Entity;
-using Furion;
-using System;
-
-namespace Magic.Application
-{
- ///
- /// 订舱服务
- ///
- [ApiDescriptionSettings("Application", Name = "DjyBooking", Order = 1)]
- public class DjyBookingService : IDjyBookingService, IDynamicApiController, ITransient
- {
- private readonly SqlSugarRepository _rep;
-
- public DjyBookingService(SqlSugarRepository rep)
- {
- _rep = rep;
- }
-
- ///
- /// 分页查询订舱
- ///
- ///
- ///
- [HttpGet("/DjyBooking/page")]
- public async Task Page([FromQuery] DjyBookingInput input)
- {
- var entities = await _rep.AsQueryable()
- .WhereIF(!string.IsNullOrWhiteSpace(input.MBLNO), u => u.MBLNO == input.MBLNO)
- .WhereIF(!string.IsNullOrWhiteSpace(input.Carrier), u => u.Carrier == input.Carrier)
- .WhereIF(!string.IsNullOrWhiteSpace(input.CarrierId), u => u.CarrierId == input.CarrierId)
- .ToPagedListAsync(input.PageNo, input.PageSize);
- return entities.XnPagedResult();
- }
-
- ///
- /// 增加订舱
- ///
- ///
- ///
- [HttpPost("/DjyBooking/add")]
- public async Task Add(AddDjyBookingInput input)
- {
- var entity = input.Adapt();
- entity.TenantId = Convert.ToInt64(App.User.FindFirst(ClaimConst.TENANT_ID)?.Value);
- await _rep.InsertAsync(entity);
- }
-
- ///
- /// 删除订舱
- ///
- ///
- ///
- [HttpPost("/DjyBooking/delete")]
- public async Task Delete(DeleteDjyBookingInput input)
- {
- var entity = await _rep.FirstOrDefaultAsync(u => u.Id == input.Id);
- await _rep.DeleteAsync(entity);
- }
-
- ///
- /// 更新订舱
- ///
- ///
- ///
- [HttpPost("/DjyBooking/edit")]
- public async Task Update(UpdateDjyBookingInput input)
- {
- var entity = input.Adapt();
- await _rep.AsUpdateable(entity).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommandAsync();
- }
-
- ///
- /// 获取订舱
- ///
- ///
- ///
- [HttpGet("/DjyBooking/detail")]
- public async Task Get([FromQuery] QueryeDjyBookingInput input)
- {
- return await _rep.FirstOrDefaultAsync(u => u.Id == input.Id);
- }
-
- ///
- /// 获取订舱列表
- ///
- ///
- ///
- [HttpGet("/DjyBooking/list")]
- public async Task List([FromQuery] DjyBookingInput input)
- {
- return await _rep.ToListAsync();
- }
- }
-}
diff --git a/Myshipping.Application/Service/DjyBooking/Dto/DjyBookingDto.cs b/Myshipping.Application/Service/DjyBooking/Dto/DjyBookingDto.cs
deleted file mode 100644
index fcab816e..00000000
--- a/Myshipping.Application/Service/DjyBooking/Dto/DjyBookingDto.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using System;
-using Magic.Core;
-
-namespace Magic.Application
-{
- ///
- /// 订舱输出参数
- ///
- public class DjyBookingDto
- {
- ///
- /// 主键Id
- ///
- public long Id { get; set; }
-
- ///
- /// 提单号
- ///
- public string MBLNO { get; set; }
-
- ///
- /// 船公司
- ///
- public string Carrier { get; set; }
-
- ///
- /// 船公司 ID
- ///
- public string CarrierId { get; set; }
-
- ///
- /// 租户Id
- ///
- public long TenantId { get; set; }
-
- }
-}
diff --git a/Myshipping.Application/Service/DjyBooking/Dto/DjyBookingInput.cs b/Myshipping.Application/Service/DjyBooking/Dto/DjyBookingInput.cs
deleted file mode 100644
index f66a7a4c..00000000
--- a/Myshipping.Application/Service/DjyBooking/Dto/DjyBookingInput.cs
+++ /dev/null
@@ -1,62 +0,0 @@
-using Magic.Core;
-using System;
-using System.ComponentModel.DataAnnotations;
-
-namespace Magic.Application
-{
- ///
- /// 订舱输入参数
- ///
- public class DjyBookingInput : PageInputBase
- {
- ///
- /// 提单号
- ///
- public virtual string MBLNO { get; set; }
-
- ///
- /// 船公司
- ///
- public virtual string Carrier { get; set; }
-
- ///
- /// 船公司 ID
- ///
- public virtual string CarrierId { get; set; }
-
- ///
- /// 租户Id
- ///
- public virtual long TenantId { get; set; }
-
- }
-
- public class AddDjyBookingInput : DjyBookingInput
- {
- }
-
- public class DeleteDjyBookingInput
- {
- ///
- /// 主键Id
- ///
- [Required(ErrorMessage = "主键Id不能为空")]
- public long Id { get; set; }
-
- }
-
- public class UpdateDjyBookingInput : DjyBookingInput
- {
- ///
- /// 主键Id
- ///
- [Required(ErrorMessage = "主键Id不能为空")]
- public long Id { get; set; }
-
- }
-
- public class QueryeDjyBookingInput : DeleteDjyBookingInput
- {
-
- }
-}
diff --git a/Myshipping.Application/Service/DjyBooking/Dto/DjyBookingOutput.cs b/Myshipping.Application/Service/DjyBooking/Dto/DjyBookingOutput.cs
deleted file mode 100644
index ab7fc9c2..00000000
--- a/Myshipping.Application/Service/DjyBooking/Dto/DjyBookingOutput.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System;
-
-namespace Magic.Application
-{
- ///
- /// 订舱输出参数
- ///
- public class DjyBookingOutput
- {
- ///
- /// 主键Id
- ///
- public long Id { get; set; }
-
- ///
- /// 提单号
- ///
- public string MBLNO { get; set; }
-
- ///
- /// 船公司
- ///
- public string Carrier { get; set; }
-
- ///
- /// 船公司 ID
- ///
- public string CarrierId { get; set; }
-
- ///
- /// 租户Id
- ///
- public long TenantId { get; set; }
-
- }
-}
diff --git a/Myshipping.Application/Service/DjyBooking/IDjyBookingService.cs b/Myshipping.Application/Service/DjyBooking/IDjyBookingService.cs
deleted file mode 100644
index 5a6807ef..00000000
--- a/Myshipping.Application/Service/DjyBooking/IDjyBookingService.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using Magic.Core;
-using Microsoft.AspNetCore.Mvc;
-using System.Threading.Tasks;
-using Magic.Application.Entity;
-namespace Magic.Application
-{
- public interface IDjyBookingService
- {
- Task Add(AddDjyBookingInput input);
- Task Delete(DeleteDjyBookingInput input);
- Task Get([FromQuery] QueryeDjyBookingInput input);
- Task List([FromQuery] DjyBookingInput input);
- Task Page([FromQuery] DjyBookingInput input);
- Task Update(UpdateDjyBookingInput input);
- }
-}
\ No newline at end of file
diff --git a/Myshipping.Application/Startup.cs b/Myshipping.Application/Startup.cs
index e32791e1..5fe59d4c 100644
--- a/Myshipping.Application/Startup.cs
+++ b/Myshipping.Application/Startup.cs
@@ -1,7 +1,7 @@
using Furion;
using Microsoft.Extensions.DependencyInjection;
-namespace Magic.Application;
+namespace Myshipping.Application;
public class Startup : AppStartup
{
diff --git a/Myshipping.Core/Attributes/OpLogAttribute.cs b/Myshipping.Core/Attributes/OpLogAttribute.cs
index 9faeefc6..00e1cf3a 100644
--- a/Myshipping.Core/Attributes/OpLogAttribute.cs
+++ b/Myshipping.Core/Attributes/OpLogAttribute.cs
@@ -1,6 +1,6 @@
using System;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 启用用操作日志
diff --git a/Myshipping.Core/Attributes/SqlSugarUnitOfWorkAttribute.cs b/Myshipping.Core/Attributes/SqlSugarUnitOfWorkAttribute.cs
index b14829ed..1da268cf 100644
--- a/Myshipping.Core/Attributes/SqlSugarUnitOfWorkAttribute.cs
+++ b/Myshipping.Core/Attributes/SqlSugarUnitOfWorkAttribute.cs
@@ -1,7 +1,7 @@
using System;
using System.Data;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// SqlSugar 工作单元配置特性
diff --git a/Myshipping.Core/Cache/ICache.cs b/Myshipping.Core/Cache/ICache.cs
index fef584ef..c879fbc5 100644
--- a/Myshipping.Core/Cache/ICache.cs
+++ b/Myshipping.Core/Cache/ICache.cs
@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Threading.Tasks;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 缓存接口
diff --git a/Myshipping.Core/Cache/MemoryCache.cs b/Myshipping.Core/Cache/MemoryCache.cs
index 1826623e..1185e02c 100644
--- a/Myshipping.Core/Cache/MemoryCache.cs
+++ b/Myshipping.Core/Cache/MemoryCache.cs
@@ -6,7 +6,7 @@ using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 内存缓存
diff --git a/Myshipping.Core/Cache/RedisCache.cs b/Myshipping.Core/Cache/RedisCache.cs
index a434a9d5..4ddcb348 100644
--- a/Myshipping.Core/Cache/RedisCache.cs
+++ b/Myshipping.Core/Cache/RedisCache.cs
@@ -5,7 +5,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// Redis缓存
diff --git a/Myshipping.Core/Cache/SqlSugarCache.cs b/Myshipping.Core/Cache/SqlSugarCache.cs
index 03473771..1ee7611e 100644
--- a/Myshipping.Core/Cache/SqlSugarCache.cs
+++ b/Myshipping.Core/Cache/SqlSugarCache.cs
@@ -4,7 +4,7 @@ using SqlSugar;
using System;
using System.Collections.Generic;
-namespace Magic.Core;
+namespace Myshipping.Core;
public class SqlSugarCache : ICacheService
{
diff --git a/Myshipping.Core/Captcha/ClickWord/ClickWordCaptcha.cs b/Myshipping.Core/Captcha/ClickWord/ClickWordCaptcha.cs
index ac65b355..a8515754 100644
--- a/Myshipping.Core/Captcha/ClickWord/ClickWordCaptcha.cs
+++ b/Myshipping.Core/Captcha/ClickWord/ClickWordCaptcha.cs
@@ -10,7 +10,7 @@ using System.IO;
using System.Linq;
using Yitter.IdGenerator;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 点选验证码
diff --git a/Myshipping.Core/Captcha/ClickWord/ClickWordCaptchaInput.cs b/Myshipping.Core/Captcha/ClickWord/ClickWordCaptchaInput.cs
index 0c81e5f8..2c21a1f4 100644
--- a/Myshipping.Core/Captcha/ClickWord/ClickWordCaptchaInput.cs
+++ b/Myshipping.Core/Captcha/ClickWord/ClickWordCaptchaInput.cs
@@ -1,7 +1,7 @@
using Furion.DependencyInjection;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 点击验证码输入参数
diff --git a/Myshipping.Core/Captcha/ClickWord/ClickWordCaptchaResult.cs b/Myshipping.Core/Captcha/ClickWord/ClickWordCaptchaResult.cs
index 1644f192..e7d911e8 100644
--- a/Myshipping.Core/Captcha/ClickWord/ClickWordCaptchaResult.cs
+++ b/Myshipping.Core/Captcha/ClickWord/ClickWordCaptchaResult.cs
@@ -1,7 +1,7 @@
using Furion.DependencyInjection;
using System.Collections.Generic;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 验证码输出参数
diff --git a/Myshipping.Core/Captcha/ClickWord/IClickWordCaptcha.cs b/Myshipping.Core/Captcha/ClickWord/IClickWordCaptcha.cs
index b5964629..7bdbcabf 100644
--- a/Myshipping.Core/Captcha/ClickWord/IClickWordCaptcha.cs
+++ b/Myshipping.Core/Captcha/ClickWord/IClickWordCaptcha.cs
@@ -1,4 +1,4 @@
-namespace Magic.Core;
+namespace Myshipping.Core;
public interface IClickWordCaptcha
{
diff --git a/Myshipping.Core/Captcha/General/GeneralCaptcha.cs b/Myshipping.Core/Captcha/General/GeneralCaptcha.cs
index 82e7c19c..5e04703e 100644
--- a/Myshipping.Core/Captcha/General/GeneralCaptcha.cs
+++ b/Myshipping.Core/Captcha/General/GeneralCaptcha.cs
@@ -7,7 +7,7 @@ using System.Drawing.Imaging;
using System.IO;
using System.Text;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 常规验证码
diff --git a/Myshipping.Core/Captcha/General/GeneralCaptchaInput.cs b/Myshipping.Core/Captcha/General/GeneralCaptchaInput.cs
index a2ccebc8..10706dda 100644
--- a/Myshipping.Core/Captcha/General/GeneralCaptchaInput.cs
+++ b/Myshipping.Core/Captcha/General/GeneralCaptchaInput.cs
@@ -1,7 +1,7 @@
using Furion.DependencyInjection;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 常规验证码输入
diff --git a/Myshipping.Core/Captcha/General/IGeneralCaptcha.cs b/Myshipping.Core/Captcha/General/IGeneralCaptcha.cs
index 119a96d4..94fe4275 100644
--- a/Myshipping.Core/Captcha/General/IGeneralCaptcha.cs
+++ b/Myshipping.Core/Captcha/General/IGeneralCaptcha.cs
@@ -1,4 +1,4 @@
-namespace Magic.Core;
+namespace Myshipping.Core;
public interface IGeneralCaptcha
{
diff --git a/Myshipping.Core/ConfigOption/ConfigOptions.cs b/Myshipping.Core/ConfigOption/ConfigOptions.cs
index 19a8b470..5f0ea2b1 100644
--- a/Myshipping.Core/ConfigOption/ConfigOptions.cs
+++ b/Myshipping.Core/ConfigOption/ConfigOptions.cs
@@ -1,7 +1,7 @@
using Furion.ConfigurableOptions;
using System.Collections.Generic;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 缓存配置
diff --git a/Myshipping.Core/Const/ClaimConst.cs b/Myshipping.Core/Const/ClaimConst.cs
index 9bdcc6b9..11741139 100644
--- a/Myshipping.Core/Const/ClaimConst.cs
+++ b/Myshipping.Core/Const/ClaimConst.cs
@@ -1,4 +1,4 @@
-namespace Magic.Core;
+namespace Myshipping.Core;
public class ClaimConst
{
diff --git a/Myshipping.Core/Const/CommonConst.cs b/Myshipping.Core/Const/CommonConst.cs
index 2933a999..1e87c8ca 100644
--- a/Myshipping.Core/Const/CommonConst.cs
+++ b/Myshipping.Core/Const/CommonConst.cs
@@ -1,4 +1,4 @@
-namespace Magic.Core;
+namespace Myshipping.Core;
public class CommonConst
{
@@ -43,7 +43,7 @@ public class CommonConst
///
/// 程序集
///
- public static string[] ENTITY_ASSEMBLY_NAME = new string[] { "Magic.Core", "Magic.Application", "Magic.FlowCenter" };
+ public static string[] ENTITY_ASSEMBLY_NAME = new string[] { "Myshipping.Core", "Myshipping.Application", "Myshipping.FlowCenter" };
///
/// 删除字段
///
diff --git a/Myshipping.Core/Entity/DBEntityTenant.cs b/Myshipping.Core/Entity/DBEntityTenant.cs
index 07b409cf..c2d04cdf 100644
--- a/Myshipping.Core/Entity/DBEntityTenant.cs
+++ b/Myshipping.Core/Entity/DBEntityTenant.cs
@@ -1,7 +1,7 @@
using SqlSugar;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 自定义租户基类实体
diff --git a/Myshipping.Core/Entity/DEntityBase.cs b/Myshipping.Core/Entity/DEntityBase.cs
index 0a99556a..e8d31745 100644
--- a/Myshipping.Core/Entity/DEntityBase.cs
+++ b/Myshipping.Core/Entity/DEntityBase.cs
@@ -2,7 +2,7 @@
using System;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 自定义实体基类
diff --git a/Myshipping.Core/Entity/Documentation.cs b/Myshipping.Core/Entity/Documentation.cs
index 9c75eb07..3abf8092 100644
--- a/Myshipping.Core/Entity/Documentation.cs
+++ b/Myshipping.Core/Entity/Documentation.cs
@@ -1,7 +1,7 @@
using SqlSugar;
using System.Collections.Generic;
using System.ComponentModel;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 文档表
diff --git a/Myshipping.Core/Entity/SysApp.cs b/Myshipping.Core/Entity/SysApp.cs
index f88e0d2b..e561fc3a 100644
--- a/Myshipping.Core/Entity/SysApp.cs
+++ b/Myshipping.Core/Entity/SysApp.cs
@@ -2,7 +2,7 @@
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 系统应用表
diff --git a/Myshipping.Core/Entity/SysCodeGen.cs b/Myshipping.Core/Entity/SysCodeGen.cs
index f1fa9ba3..8fe2f13d 100644
--- a/Myshipping.Core/Entity/SysCodeGen.cs
+++ b/Myshipping.Core/Entity/SysCodeGen.cs
@@ -2,7 +2,7 @@
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 代码生成表
diff --git a/Myshipping.Core/Entity/SysCodeGenConfig.cs b/Myshipping.Core/Entity/SysCodeGenConfig.cs
index 8bdc00c4..0dffaec3 100644
--- a/Myshipping.Core/Entity/SysCodeGenConfig.cs
+++ b/Myshipping.Core/Entity/SysCodeGenConfig.cs
@@ -2,7 +2,7 @@
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 代码生成字段配置表
diff --git a/Myshipping.Core/Entity/SysConfig.cs b/Myshipping.Core/Entity/SysConfig.cs
index 7a0ae76b..e08aa768 100644
--- a/Myshipping.Core/Entity/SysConfig.cs
+++ b/Myshipping.Core/Entity/SysConfig.cs
@@ -2,7 +2,7 @@
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 参数配置表
diff --git a/Myshipping.Core/Entity/SysDictData.cs b/Myshipping.Core/Entity/SysDictData.cs
index 30045131..f92d95cc 100644
--- a/Myshipping.Core/Entity/SysDictData.cs
+++ b/Myshipping.Core/Entity/SysDictData.cs
@@ -1,7 +1,7 @@
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 字典值表
diff --git a/Myshipping.Core/Entity/SysDictType.cs b/Myshipping.Core/Entity/SysDictType.cs
index 8505a066..97080299 100644
--- a/Myshipping.Core/Entity/SysDictType.cs
+++ b/Myshipping.Core/Entity/SysDictType.cs
@@ -5,7 +5,7 @@ using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 字典类型表
diff --git a/Myshipping.Core/Entity/SysEmp.cs b/Myshipping.Core/Entity/SysEmp.cs
index 9c9e8e7b..ee36e760 100644
--- a/Myshipping.Core/Entity/SysEmp.cs
+++ b/Myshipping.Core/Entity/SysEmp.cs
@@ -1,7 +1,7 @@
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 员工表
diff --git a/Myshipping.Core/Entity/SysEmpExtOrgPos.cs b/Myshipping.Core/Entity/SysEmpExtOrgPos.cs
index cd213870..273f2be3 100644
--- a/Myshipping.Core/Entity/SysEmpExtOrgPos.cs
+++ b/Myshipping.Core/Entity/SysEmpExtOrgPos.cs
@@ -1,6 +1,6 @@
using SqlSugar;
using System.ComponentModel;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 员工附属机构职位表
diff --git a/Myshipping.Core/Entity/SysEmpPos.cs b/Myshipping.Core/Entity/SysEmpPos.cs
index ead26a9f..ee962b49 100644
--- a/Myshipping.Core/Entity/SysEmpPos.cs
+++ b/Myshipping.Core/Entity/SysEmpPos.cs
@@ -1,7 +1,7 @@
using SqlSugar;
using System.ComponentModel;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 员工职位表
diff --git a/Myshipping.Core/Entity/SysFile.cs b/Myshipping.Core/Entity/SysFile.cs
index afa21ad2..0f7f64e1 100644
--- a/Myshipping.Core/Entity/SysFile.cs
+++ b/Myshipping.Core/Entity/SysFile.cs
@@ -1,7 +1,7 @@
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 文件信息表
diff --git a/Myshipping.Core/Entity/SysLogAudit.cs b/Myshipping.Core/Entity/SysLogAudit.cs
index 5c5dc289..0718fd41 100644
--- a/Myshipping.Core/Entity/SysLogAudit.cs
+++ b/Myshipping.Core/Entity/SysLogAudit.cs
@@ -3,7 +3,7 @@ using SqlSugar;
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 系统操作/审计日志表
diff --git a/Myshipping.Core/Entity/SysLogEx.cs b/Myshipping.Core/Entity/SysLogEx.cs
index 20efba9a..6e8f878c 100644
--- a/Myshipping.Core/Entity/SysLogEx.cs
+++ b/Myshipping.Core/Entity/SysLogEx.cs
@@ -3,7 +3,7 @@ using SqlSugar;
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 异常日志
diff --git a/Myshipping.Core/Entity/SysLogOp.cs b/Myshipping.Core/Entity/SysLogOp.cs
index 378f1955..047cff44 100644
--- a/Myshipping.Core/Entity/SysLogOp.cs
+++ b/Myshipping.Core/Entity/SysLogOp.cs
@@ -2,7 +2,7 @@ using SqlSugar;
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 操作日志表
diff --git a/Myshipping.Core/Entity/SysLogVis.cs b/Myshipping.Core/Entity/SysLogVis.cs
index 0ea2c855..43b468d4 100644
--- a/Myshipping.Core/Entity/SysLogVis.cs
+++ b/Myshipping.Core/Entity/SysLogVis.cs
@@ -2,7 +2,7 @@
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 访问日志表
diff --git a/Myshipping.Core/Entity/SysMenu.cs b/Myshipping.Core/Entity/SysMenu.cs
index 80a7eebe..af23e155 100644
--- a/Myshipping.Core/Entity/SysMenu.cs
+++ b/Myshipping.Core/Entity/SysMenu.cs
@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 菜单表
diff --git a/Myshipping.Core/Entity/SysNotice.cs b/Myshipping.Core/Entity/SysNotice.cs
index 1b81daaf..20c6edc5 100644
--- a/Myshipping.Core/Entity/SysNotice.cs
+++ b/Myshipping.Core/Entity/SysNotice.cs
@@ -2,7 +2,7 @@
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 通知公告表
diff --git a/Myshipping.Core/Entity/SysNoticeUser.cs b/Myshipping.Core/Entity/SysNoticeUser.cs
index 66e48cd4..e5ef972c 100644
--- a/Myshipping.Core/Entity/SysNoticeUser.cs
+++ b/Myshipping.Core/Entity/SysNoticeUser.cs
@@ -2,7 +2,7 @@
using System;
using System.ComponentModel;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 通知公告用户表
diff --git a/Myshipping.Core/Entity/SysOauthUser.cs b/Myshipping.Core/Entity/SysOauthUser.cs
index 9cb1475f..aa47f265 100644
--- a/Myshipping.Core/Entity/SysOauthUser.cs
+++ b/Myshipping.Core/Entity/SysOauthUser.cs
@@ -1,7 +1,7 @@
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// Oauth登录用户表
diff --git a/Myshipping.Core/Entity/SysOnlineUser.cs b/Myshipping.Core/Entity/SysOnlineUser.cs
index a286976a..79d98a7e 100644
--- a/Myshipping.Core/Entity/SysOnlineUser.cs
+++ b/Myshipping.Core/Entity/SysOnlineUser.cs
@@ -3,7 +3,7 @@ using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 在线用户表
diff --git a/Myshipping.Core/Entity/SysOrg.cs b/Myshipping.Core/Entity/SysOrg.cs
index 8e4875da..f7a429bb 100644
--- a/Myshipping.Core/Entity/SysOrg.cs
+++ b/Myshipping.Core/Entity/SysOrg.cs
@@ -1,7 +1,7 @@
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 组织机构表
diff --git a/Myshipping.Core/Entity/SysPos.cs b/Myshipping.Core/Entity/SysPos.cs
index 929a5842..31f5f677 100644
--- a/Myshipping.Core/Entity/SysPos.cs
+++ b/Myshipping.Core/Entity/SysPos.cs
@@ -1,7 +1,7 @@
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 职位表
diff --git a/Myshipping.Core/Entity/SysRole.cs b/Myshipping.Core/Entity/SysRole.cs
index 5c005a1f..a7faa2fd 100644
--- a/Myshipping.Core/Entity/SysRole.cs
+++ b/Myshipping.Core/Entity/SysRole.cs
@@ -1,7 +1,7 @@
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 角色表
diff --git a/Myshipping.Core/Entity/SysRoleDataScope.cs b/Myshipping.Core/Entity/SysRoleDataScope.cs
index 8624cec6..92e51b4d 100644
--- a/Myshipping.Core/Entity/SysRoleDataScope.cs
+++ b/Myshipping.Core/Entity/SysRoleDataScope.cs
@@ -1,7 +1,7 @@
using SqlSugar;
using System.ComponentModel;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 角色数据范围表
diff --git a/Myshipping.Core/Entity/SysRoleMenu.cs b/Myshipping.Core/Entity/SysRoleMenu.cs
index 6c5bb69d..6e2095d8 100644
--- a/Myshipping.Core/Entity/SysRoleMenu.cs
+++ b/Myshipping.Core/Entity/SysRoleMenu.cs
@@ -1,7 +1,7 @@
using SqlSugar;
using System.ComponentModel;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 角色菜单表
diff --git a/Myshipping.Core/Entity/SysTenant.cs b/Myshipping.Core/Entity/SysTenant.cs
index ea8c4b9f..d8cd157b 100644
--- a/Myshipping.Core/Entity/SysTenant.cs
+++ b/Myshipping.Core/Entity/SysTenant.cs
@@ -1,7 +1,7 @@
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 租户表
diff --git a/Myshipping.Core/Entity/SysTimer.cs b/Myshipping.Core/Entity/SysTimer.cs
index 7db74889..67e5ca98 100644
--- a/Myshipping.Core/Entity/SysTimer.cs
+++ b/Myshipping.Core/Entity/SysTimer.cs
@@ -2,7 +2,7 @@
using SqlSugar;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 定时任务
diff --git a/Myshipping.Core/Entity/SysUser.cs b/Myshipping.Core/Entity/SysUser.cs
index 3a9b6443..fa54c12f 100644
--- a/Myshipping.Core/Entity/SysUser.cs
+++ b/Myshipping.Core/Entity/SysUser.cs
@@ -2,7 +2,7 @@ using SqlSugar;
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 用户表
diff --git a/Myshipping.Core/Entity/SysUserDataScope.cs b/Myshipping.Core/Entity/SysUserDataScope.cs
index 0bc23950..c59f8a7f 100644
--- a/Myshipping.Core/Entity/SysUserDataScope.cs
+++ b/Myshipping.Core/Entity/SysUserDataScope.cs
@@ -1,7 +1,7 @@
using SqlSugar;
using System.ComponentModel;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 用户数据范围表
diff --git a/Myshipping.Core/Entity/SysUserRole.cs b/Myshipping.Core/Entity/SysUserRole.cs
index 7e984694..fce6851e 100644
--- a/Myshipping.Core/Entity/SysUserRole.cs
+++ b/Myshipping.Core/Entity/SysUserRole.cs
@@ -1,7 +1,7 @@
using SqlSugar;
using System.ComponentModel;
-namespace Magic.Core.Entity;
+namespace Myshipping.Core.Entity;
///
/// 用户角色表
diff --git a/Myshipping.Core/Enum/AdminType.cs b/Myshipping.Core/Enum/AdminType.cs
index 71b05323..42b4de52 100644
--- a/Myshipping.Core/Enum/AdminType.cs
+++ b/Myshipping.Core/Enum/AdminType.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 账号类型
diff --git a/Myshipping.Core/Enum/CacheType.cs b/Myshipping.Core/Enum/CacheType.cs
index b081daef..85035524 100644
--- a/Myshipping.Core/Enum/CacheType.cs
+++ b/Myshipping.Core/Enum/CacheType.cs
@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 缓存类型
diff --git a/Myshipping.Core/Enum/CommonStatus.cs b/Myshipping.Core/Enum/CommonStatus.cs
index 2eb0b0e2..7b974229 100644
--- a/Myshipping.Core/Enum/CommonStatus.cs
+++ b/Myshipping.Core/Enum/CommonStatus.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 公共状态
diff --git a/Myshipping.Core/Enum/DataOpType.cs b/Myshipping.Core/Enum/DataOpType.cs
index 76056d68..e2d70357 100644
--- a/Myshipping.Core/Enum/DataOpType.cs
+++ b/Myshipping.Core/Enum/DataOpType.cs
@@ -1,4 +1,4 @@
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 数据操作类型
diff --git a/Myshipping.Core/Enum/DataScopeType.cs b/Myshipping.Core/Enum/DataScopeType.cs
index 0642798d..955a8060 100644
--- a/Myshipping.Core/Enum/DataScopeType.cs
+++ b/Myshipping.Core/Enum/DataScopeType.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
public enum DataScopeType
{
diff --git a/Myshipping.Core/Enum/DocumentType.cs b/Myshipping.Core/Enum/DocumentType.cs
index 7fc7d660..23dda78f 100644
--- a/Myshipping.Core/Enum/DocumentType.cs
+++ b/Myshipping.Core/Enum/DocumentType.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 文档类型
diff --git a/Myshipping.Core/Enum/ErrorCode.cs b/Myshipping.Core/Enum/ErrorCode.cs
index 51276917..0280b3d7 100644
--- a/Myshipping.Core/Enum/ErrorCode.cs
+++ b/Myshipping.Core/Enum/ErrorCode.cs
@@ -1,6 +1,6 @@
using Furion.FriendlyException;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 系统错误码
diff --git a/Myshipping.Core/Enum/FileExtensionEnum.cs b/Myshipping.Core/Enum/FileExtensionEnum.cs
index 0bec446b..c59472e3 100644
--- a/Myshipping.Core/Enum/FileExtensionEnum.cs
+++ b/Myshipping.Core/Enum/FileExtensionEnum.cs
@@ -1,4 +1,4 @@
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 文件扩展枚举
diff --git a/Myshipping.Core/Enum/FileLocation.cs b/Myshipping.Core/Enum/FileLocation.cs
index b3c6181d..099aa69a 100644
--- a/Myshipping.Core/Enum/FileLocation.cs
+++ b/Myshipping.Core/Enum/FileLocation.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 文件存储位置
diff --git a/Myshipping.Core/Enum/FilterType.cs b/Myshipping.Core/Enum/FilterType.cs
index 07a6702f..0e3e8547 100644
--- a/Myshipping.Core/Enum/FilterType.cs
+++ b/Myshipping.Core/Enum/FilterType.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
public enum FilterType
{
diff --git a/Myshipping.Core/Enum/Gender.cs b/Myshipping.Core/Enum/Gender.cs
index 044ebddc..c4966c8e 100644
--- a/Myshipping.Core/Enum/Gender.cs
+++ b/Myshipping.Core/Enum/Gender.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 性别
diff --git a/Myshipping.Core/Enum/HttpStatusCode.cs b/Myshipping.Core/Enum/HttpStatusCode.cs
index 47426086..357a9427 100644
--- a/Myshipping.Core/Enum/HttpStatusCode.cs
+++ b/Myshipping.Core/Enum/HttpStatusCode.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// HTTP状态码
diff --git a/Myshipping.Core/Enum/LoginType.cs b/Myshipping.Core/Enum/LoginType.cs
index a621ee28..65f76a78 100644
--- a/Myshipping.Core/Enum/LoginType.cs
+++ b/Myshipping.Core/Enum/LoginType.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 登陆类型
diff --git a/Myshipping.Core/Enum/MenuOpenType.cs b/Myshipping.Core/Enum/MenuOpenType.cs
index 847bcd7a..0a5f5bb0 100644
--- a/Myshipping.Core/Enum/MenuOpenType.cs
+++ b/Myshipping.Core/Enum/MenuOpenType.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 系统菜单类型
diff --git a/Myshipping.Core/Enum/MenuType.cs b/Myshipping.Core/Enum/MenuType.cs
index abc68edd..bfe998b5 100644
--- a/Myshipping.Core/Enum/MenuType.cs
+++ b/Myshipping.Core/Enum/MenuType.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 系统菜单类型
diff --git a/Myshipping.Core/Enum/MenuWeight.cs b/Myshipping.Core/Enum/MenuWeight.cs
index b05b6d6b..029d893a 100644
--- a/Myshipping.Core/Enum/MenuWeight.cs
+++ b/Myshipping.Core/Enum/MenuWeight.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 菜单权重
diff --git a/Myshipping.Core/Enum/NoticeStatus.cs b/Myshipping.Core/Enum/NoticeStatus.cs
index e4abf2d7..ad203f3f 100644
--- a/Myshipping.Core/Enum/NoticeStatus.cs
+++ b/Myshipping.Core/Enum/NoticeStatus.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 通知公告状态
diff --git a/Myshipping.Core/Enum/NoticeType.cs b/Myshipping.Core/Enum/NoticeType.cs
index a3966f06..4824fcb8 100644
--- a/Myshipping.Core/Enum/NoticeType.cs
+++ b/Myshipping.Core/Enum/NoticeType.cs
@@ -5,7 +5,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
-namespace Magic.Core;
+namespace Myshipping.Core;
public enum NoticeType
{
diff --git a/Myshipping.Core/Enum/NoticeUserStatus.cs b/Myshipping.Core/Enum/NoticeUserStatus.cs
index 39d19b6b..e22e770c 100644
--- a/Myshipping.Core/Enum/NoticeUserStatus.cs
+++ b/Myshipping.Core/Enum/NoticeUserStatus.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 通知公告用户状态
diff --git a/Myshipping.Core/Enum/QueryTypeEnum.cs b/Myshipping.Core/Enum/QueryTypeEnum.cs
index ee04aed7..15ee95f1 100644
--- a/Myshipping.Core/Enum/QueryTypeEnum.cs
+++ b/Myshipping.Core/Enum/QueryTypeEnum.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 查询类型的枚举
diff --git a/Myshipping.Core/Enum/RequestTypeEnum.cs b/Myshipping.Core/Enum/RequestTypeEnum.cs
index 275c2ed0..50111aad 100644
--- a/Myshipping.Core/Enum/RequestTypeEnum.cs
+++ b/Myshipping.Core/Enum/RequestTypeEnum.cs
@@ -1,4 +1,4 @@
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// http请求类型
diff --git a/Myshipping.Core/Enum/RoleType.cs b/Myshipping.Core/Enum/RoleType.cs
index 2f5e6063..13c30598 100644
--- a/Myshipping.Core/Enum/RoleType.cs
+++ b/Myshipping.Core/Enum/RoleType.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 账号类型
diff --git a/Myshipping.Core/Enum/TenantTypeEnum.cs b/Myshipping.Core/Enum/TenantTypeEnum.cs
index 9a18ce30..cd89051a 100644
--- a/Myshipping.Core/Enum/TenantTypeEnum.cs
+++ b/Myshipping.Core/Enum/TenantTypeEnum.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
public enum TenantTypeEnum
{
diff --git a/Myshipping.Core/Enum/YesOrNot.cs b/Myshipping.Core/Enum/YesOrNot.cs
index d81a3f1e..6c283c41 100644
--- a/Myshipping.Core/Enum/YesOrNot.cs
+++ b/Myshipping.Core/Enum/YesOrNot.cs
@@ -1,6 +1,6 @@
using System.ComponentModel;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 菜单激活类型
diff --git a/Myshipping.Core/EventSubscriber/LogEventSubscriber.cs b/Myshipping.Core/EventSubscriber/LogEventSubscriber.cs
index 492dd90f..eb3ca149 100644
--- a/Myshipping.Core/EventSubscriber/LogEventSubscriber.cs
+++ b/Myshipping.Core/EventSubscriber/LogEventSubscriber.cs
@@ -1,10 +1,10 @@
using Furion.EventBus;
-using Magic.Core.Entity;
+using Myshipping.Core.Entity;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Threading.Tasks;
-namespace Magic.Core;
+namespace Myshipping.Core;
public class LogEventSubscriber : IEventSubscriber
{
diff --git a/Myshipping.Core/Extension/BStyleServiceExtension.cs b/Myshipping.Core/Extension/BStyleServiceExtension.cs
index 45a334f5..f81fe868 100644
--- a/Myshipping.Core/Extension/BStyleServiceExtension.cs
+++ b/Myshipping.Core/Extension/BStyleServiceExtension.cs
@@ -1,7 +1,7 @@
using Microsoft.Extensions.DependencyInjection;
using System;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// B格
diff --git a/Myshipping.Core/Extension/DataFilterExtensions.cs b/Myshipping.Core/Extension/DataFilterExtensions.cs
index f78cc741..7e8956ec 100644
--- a/Myshipping.Core/Extension/DataFilterExtensions.cs
+++ b/Myshipping.Core/Extension/DataFilterExtensions.cs
@@ -9,7 +9,7 @@ using System.Linq.Expressions;
using System.Reflection;
using System.Threading.Tasks;
-namespace Magic.Core;
+namespace Myshipping.Core;
public static class DataFilterExtensions
{
diff --git a/Myshipping.Core/Extension/DictionaryExtensions.cs b/Myshipping.Core/Extension/DictionaryExtensions.cs
index bc6759e0..7973725e 100644
--- a/Myshipping.Core/Extension/DictionaryExtensions.cs
+++ b/Myshipping.Core/Extension/DictionaryExtensions.cs
@@ -2,7 +2,7 @@
using System.Linq;
using System.Text;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 字典扩展
diff --git a/Myshipping.Core/Extension/EnumExtensions.cs b/Myshipping.Core/Extension/EnumExtensions.cs
index 2ce9493f..a6b3ef15 100644
--- a/Myshipping.Core/Extension/EnumExtensions.cs
+++ b/Myshipping.Core/Extension/EnumExtensions.cs
@@ -6,7 +6,7 @@ using System.Linq;
using System.Reflection;
using Furion.FriendlyException;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 枚举扩展
diff --git a/Myshipping.Core/Extension/InputBase.cs b/Myshipping.Core/Extension/InputBase.cs
index 62d9c7e2..31fc6cec 100644
--- a/Myshipping.Core/Extension/InputBase.cs
+++ b/Myshipping.Core/Extension/InputBase.cs
@@ -1,6 +1,6 @@
using System.Collections.Generic;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 通用输入扩展参数(带权限)
diff --git a/Myshipping.Core/Extension/PageInputOrder.cs b/Myshipping.Core/Extension/PageInputOrder.cs
index 89e0d630..219c2e29 100644
--- a/Myshipping.Core/Extension/PageInputOrder.cs
+++ b/Myshipping.Core/Extension/PageInputOrder.cs
@@ -1,4 +1,4 @@
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 通用输入帮助类
diff --git a/Myshipping.Core/Extension/PageResult.cs b/Myshipping.Core/Extension/PageResult.cs
index 55c96f84..f5b8f411 100644
--- a/Myshipping.Core/Extension/PageResult.cs
+++ b/Myshipping.Core/Extension/PageResult.cs
@@ -2,7 +2,7 @@
using Mapster;
using SqlSugar;
-namespace Magic.Core;
+namespace Myshipping.Core;
public class PageResult
{
diff --git a/Myshipping.Core/Extension/PagedQueryableExtensions.cs b/Myshipping.Core/Extension/PagedQueryableExtensions.cs
index 6d450dc4..388178a9 100644
--- a/Myshipping.Core/Extension/PagedQueryableExtensions.cs
+++ b/Myshipping.Core/Extension/PagedQueryableExtensions.cs
@@ -2,7 +2,7 @@ using SqlSugar;
using System;
using System.Threading.Tasks;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 分页拓展类
diff --git a/Myshipping.Core/Extension/RestfulResultProvider.cs b/Myshipping.Core/Extension/RestfulResultProvider.cs
index 0e8c4f72..acdd32fc 100644
--- a/Myshipping.Core/Extension/RestfulResultProvider.cs
+++ b/Myshipping.Core/Extension/RestfulResultProvider.cs
@@ -8,7 +8,7 @@ using Microsoft.AspNetCore.Mvc.Filters;
using System;
using System.Threading.Tasks;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 规范化RESTful风格返回值
diff --git a/Myshipping.Core/Filter/LogExceptionHandler.cs b/Myshipping.Core/Filter/LogExceptionHandler.cs
index f47dbf25..388ac08b 100644
--- a/Myshipping.Core/Filter/LogExceptionHandler.cs
+++ b/Myshipping.Core/Filter/LogExceptionHandler.cs
@@ -3,14 +3,14 @@ using Furion.DependencyInjection;
using Furion.EventBus;
using Furion.FriendlyException;
using Furion.Logging.Extensions;
-using Magic.Core.Entity;
+using Myshipping.Core.Entity;
using Microsoft.AspNetCore.Mvc.Filters;
using System;
using System.Security.Claims;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 全局异常处理
diff --git a/Myshipping.Core/Filter/RequestActionFilter.cs b/Myshipping.Core/Filter/RequestActionFilter.cs
index f8a0875a..271a5ac5 100644
--- a/Myshipping.Core/Filter/RequestActionFilter.cs
+++ b/Myshipping.Core/Filter/RequestActionFilter.cs
@@ -5,14 +5,14 @@ using System.Threading.Tasks;
using Furion;
using Furion.EventBus;
using Furion.JsonSerialization;
-using Magic.Core.Entity;
+using Myshipping.Core.Entity;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Controllers;
using Microsoft.AspNetCore.Mvc.Filters;
using UAParser;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 请求日志拦截
diff --git a/Myshipping.Core/Filter/SqlSugarUnitOfWorkFilter.cs b/Myshipping.Core/Filter/SqlSugarUnitOfWorkFilter.cs
index 67181ef2..49b1a253 100644
--- a/Myshipping.Core/Filter/SqlSugarUnitOfWorkFilter.cs
+++ b/Myshipping.Core/Filter/SqlSugarUnitOfWorkFilter.cs
@@ -4,7 +4,7 @@ using SqlSugar;
using System.Linq;
using System.Threading.Tasks;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// SqlSugar 工作单元拦截器
diff --git a/Myshipping.Core/Hubs/ChatHub.cs b/Myshipping.Core/Hubs/ChatHub.cs
index 260d09d0..86d54378 100644
--- a/Myshipping.Core/Hubs/ChatHub.cs
+++ b/Myshipping.Core/Hubs/ChatHub.cs
@@ -1,12 +1,12 @@
using Furion.DataEncryption;
-using Magic.Core.Entity;
-using Magic.Core.Service;
+using Myshipping.Core.Entity;
+using Myshipping.Core.Service;
using Microsoft.AspNetCore.SignalR;
using System;
using System.Linq;
using System.Threading.Tasks;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 聊天集线器
diff --git a/Myshipping.Core/Hubs/IChatClient.cs b/Myshipping.Core/Hubs/IChatClient.cs
index f1478e6e..89d7733f 100644
--- a/Myshipping.Core/Hubs/IChatClient.cs
+++ b/Myshipping.Core/Hubs/IChatClient.cs
@@ -1,7 +1,7 @@
-using Magic.Core.Entity;
+using Myshipping.Core.Entity;
using System.Threading.Tasks;
-namespace Magic.Core;
+namespace Myshipping.Core;
public interface IChatClient
{
diff --git a/Myshipping.Core/Job/LogJobWorker.cs b/Myshipping.Core/Job/LogJobWorker.cs
index 4adb0a36..ae8c2e2d 100644
--- a/Myshipping.Core/Job/LogJobWorker.cs
+++ b/Myshipping.Core/Job/LogJobWorker.cs
@@ -1,8 +1,8 @@
using Furion;
using Furion.DependencyInjection;
using Furion.TaskScheduler;
-using Magic.Core.Entity;
-using Magic.Core.Service;
+using Myshipping.Core.Entity;
+using Myshipping.Core.Service;
using Microsoft.Extensions.DependencyInjection;
using SqlSugar;
using System;
@@ -10,7 +10,7 @@ using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
-namespace Magic.Core.Job;
+namespace Myshipping.Core.Job;
///
/// 日志定时任务类
diff --git a/Myshipping.Core/JsonConverter/LongJsonConverter.cs b/Myshipping.Core/JsonConverter/LongJsonConverter.cs
index 1b5db425..01d0130b 100644
--- a/Myshipping.Core/JsonConverter/LongJsonConverter.cs
+++ b/Myshipping.Core/JsonConverter/LongJsonConverter.cs
@@ -2,7 +2,7 @@
using System.Text.Json;
using System.Text.Json.Serialization;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// Long 类型Json返回处理
diff --git a/Myshipping.Core/Logging/Component/ConsoleForamtComponent.cs b/Myshipping.Core/Logging/Component/ConsoleForamtComponent.cs
index e9116b22..e234754e 100644
--- a/Myshipping.Core/Logging/Component/ConsoleForamtComponent.cs
+++ b/Myshipping.Core/Logging/Component/ConsoleForamtComponent.cs
@@ -3,7 +3,7 @@ using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Console;
using System;
-namespace Magic.Core;
+namespace Myshipping.Core;
public sealed class ConsoleForamtComponent : IWebComponent
{
diff --git a/Myshipping.Core/Logging/Component/LoggingFileComponent.cs b/Myshipping.Core/Logging/Component/LoggingFileComponent.cs
index 983b9587..ca629fb7 100644
--- a/Myshipping.Core/Logging/Component/LoggingFileComponent.cs
+++ b/Myshipping.Core/Logging/Component/LoggingFileComponent.cs
@@ -4,7 +4,7 @@ using Microsoft.Extensions.Logging;
using System;
using System.Text;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 日志写入文件的组件
diff --git a/Myshipping.Core/Logging/Extensions/LoggingFileExtensions.cs b/Myshipping.Core/Logging/Extensions/LoggingFileExtensions.cs
index f9aacf02..7ca1bde8 100644
--- a/Myshipping.Core/Logging/Extensions/LoggingFileExtensions.cs
+++ b/Myshipping.Core/Logging/Extensions/LoggingFileExtensions.cs
@@ -3,7 +3,7 @@ using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Console;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 日志写入文件扩展
diff --git a/Myshipping.Core/Logging/Format/ConsoleForamt.cs b/Myshipping.Core/Logging/Format/ConsoleForamt.cs
index 303acadc..db183c5b 100644
--- a/Myshipping.Core/Logging/Format/ConsoleForamt.cs
+++ b/Myshipping.Core/Logging/Format/ConsoleForamt.cs
@@ -5,7 +5,7 @@ using Microsoft.Extensions.Options;
using System;
using System.IO;
-namespace Magic.Core;
+namespace Myshipping.Core;
public class ConsoleForamt : ConsoleFormatter, IDisposable
{
diff --git a/Myshipping.Core/Logging/Format/CustomColorOptions.cs b/Myshipping.Core/Logging/Format/CustomColorOptions.cs
index 87176164..4bfece1f 100644
--- a/Myshipping.Core/Logging/Format/CustomColorOptions.cs
+++ b/Myshipping.Core/Logging/Format/CustomColorOptions.cs
@@ -5,7 +5,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
-namespace Magic.Core;
+namespace Myshipping.Core;
public class CustomColorOptions : SimpleConsoleFormatterOptions
{
diff --git a/Myshipping.Core/Logging/Format/TextWriterExtensions.cs b/Myshipping.Core/Logging/Format/TextWriterExtensions.cs
index 1496e285..222b0705 100644
--- a/Myshipping.Core/Logging/Format/TextWriterExtensions.cs
+++ b/Myshipping.Core/Logging/Format/TextWriterExtensions.cs
@@ -1,7 +1,7 @@
using System;
using System.IO;
-namespace Magic.Core;
+namespace Myshipping.Core;
public static class TextWriterExtensions
{
const string DefaultForegroundColor = "\x1B[39m\x1B[22m";
diff --git a/Myshipping.Core/Magic.Core.xml b/Myshipping.Core/Magic.Core.xml
deleted file mode 100644
index e1a91840..00000000
--- a/Myshipping.Core/Magic.Core.xml
+++ /dev/null
@@ -1,10322 +0,0 @@
-
-
-
- Magic.Core
-
-
-
-
- 启用用操作日志
-
-
-
-
- SqlSugar 工作单元配置特性
-
-
-
-
- 构造函数
-
-
-
-
- 构造函数
-
-
- 支持传入事务隔离级别 参数值
-
- 事务隔离级别
-
-
-
- 事务隔离级别
-
-
- 默认:,参见:
- 说明:当事务A更新某条数据的时候,不容许其他事务来更新该数据,但可以进行读取操作
-
-
-
-
- 缓存接口
-
-
-
-
- 用于在 key 存在时删除 key
-
- 键
-
-
-
- 用于在 key 存在时删除 key
-
- 键
-
-
-
-
- 用于在 key 模板存在时删除
-
- key模板
-
-
-
-
- 检查给定 key 是否存在
-
- 键
-
-
-
-
- 检查给定 key 是否存在
-
- 键
-
-
-
-
- 获取指定 key 的值
-
- 键
-
-
-
-
- 获取指定 key 的值
-
- byte[] 或其他类型
- 键
-
-
-
-
- 获取指定 key 的值
-
- 键
-
-
-
-
- 获取指定 key 的值
-
- byte[] 或其他类型
- 键
-
-
-
-
- 设置指定 key 的值,所有写入参数object都支持string | byte[] | 数值 | 对象
-
- 键
- 值
-
-
-
- 设置指定 key 的值,所有写入参数object都支持string | byte[] | 数值 | 对象
-
- 键
- 值
- 有效期
-
-
-
- 设置指定 key 的值,所有写入参数object都支持string | byte[] | 数值 | 对象
-
- 键
- 值
-
-
-
-
- 设置指定 key 的值,所有写入参数object都支持string | byte[] | 数值 | 对象
-
- 键
- 值
- 有效期
-
-
-
-
- 获取所有缓存
-
-
-
-
-
- 内存缓存
-
-
-
-
- Redis缓存
-
-
-
-
- 点选验证码
-
-
-
-
- 生成验证码图片
-
-
-
-
-
-
-
-
- 转换为相对于图片的百分比单位
-
- 图片宽高
- 相对于图片的绝对尺寸
- (int:xPercent, int:yPercent)
-
-
-
- 加载字体
-
- 字体文件路径,包含字体文件名和后缀名
- 大小
- 字形(常规/粗体/斜体/粗斜体)
-
-
-
- 随机绘制字符串
-
-
-
-
-
-
- 验证码验证
-
-
-
-
-
-
- 记录正确位置
-
-
-
-
- 点击验证码输入参数
-
-
-
-
- 验证码类型
-
-
-
-
- 坐标点集合
-
-
-
-
- Token
-
-
-
-
- 验证码输出参数
-
-
-
-
- 常规验证码
-
-
-
-
- 生成验证码图片
-
-
-
-
-
-
- 验证码验证
-
-
-
-
-
-
- 常规验证码输入
-
-
-
-
- 验证码类型
-
-
-
-
- 验证码字符
-
-
-
-
- Token
-
-
-
-
- 缓存配置
-
-
-
-
- 缓存类型
-
-
-
-
- Redis配置
-
-
-
-
- 系统配置
-
-
-
-
- 超管是否可以查看所有租户的数据
-
-
-
-
- 是否开启全局请求日志
-
-
-
-
- 雪花Id配置
-
-
-
-
- 取值范围0~63,默认1
-
-
-
-
- 第三方配置
-
-
-
-
- 微信
-
-
-
-
- 上传文件
-
-
-
-
- 阿里云
-
-
-
-
- 头像
-
-
-
-
- 文档
-
-
-
-
- 商店
-
-
-
-
- 编辑器
-
-
-
-
- 默认
-
-
-
-
- 数据库配置
-
-
-
-
- 默认数据库编号
-
-
-
-
- 默认数据库类型
-
-
-
-
- 默认数据库连接字符串
-
-
-
-
- 业务库集合
-
-
-
-
- JWT配置
-
-
-
-
- 是否验证密钥
-
-
-
-
- 密钥
-
-
-
-
- 是否验证签发方
-
-
-
-
- 签发方
-
-
-
-
- 是否验证签收方
-
-
-
-
- 签收方
-
-
-
-
- 是否验证过期时间
-
-
-
-
- 过期时间
-
-
-
-
- 过期时间容错值
-
-
-
-
- 数据库参数
-
-
-
-
- 数据库编号
-
-
-
-
- 数据库类型
-
-
-
-
- 数据库连接字符串
-
-
-
-
- 文件参数
-
-
-
-
- 路径
-
-
-
-
- 大小
-
-
-
-
- 类型
-
-
-
-
- 第三方参数
-
-
-
-
- id
-
-
-
-
- key
-
-
-
-
- 回调地址
-
-
-
-
- scope
-
-
-
-
- 用户Id
-
-
-
-
- 账号
-
-
-
-
- 名称
-
-
-
-
- 是否超级管理
-
-
-
-
- 租户Id
-
-
-
-
- 租户类型
-
-
-
-
- 租户名称
-
-
-
-
- 用户缓存
-
-
-
-
- 菜单缓存
-
-
-
-
- 权限缓存
-
-
-
-
- 数据范围缓存
-
-
-
-
- 验证码缓存
-
-
-
-
- 库表实体信息缓存
-
-
-
-
- 所有权限缓存
-
-
-
-
- 程序集
-
-
-
-
- 删除字段
-
-
-
-
- 自定义租户基类实体
-
-
-
-
- 租户id
-
-
-
-
- 自定义实体基类
-
-
-
-
- 创建时间
-
-
-
-
- 更新时间
-
-
-
-
- 创建者Id
-
-
-
-
- 创建者名称
-
-
-
-
- 修改者Id
-
-
-
-
- 修改者名称
-
-
-
-
- 软删除
-
-
-
-
- 更新信息列
-
-
-
-
-
- 假删除的列,包含更新信息
-
-
-
-
-
- 递增主键实体基类
-
-
-
-
- 主键Id
-
-
-
-
- 主键实体基类
-
-
-
-
- 主键Id
-
-
-
-
- 文档表
-
-
-
-
- 父Id
-
-
-
-
- 父ID列表
-
-
-
-
- 名称
-
-
-
-
- 文档类型:文件、文件夹
-
-
-
-
- 文件后缀
-
-
-
-
- 文件大小kb
-
-
-
-
- 文件路径
-
-
-
-
- 存储后的文件名
-
-
-
-
- 标签
-
-
-
-
- 备注
-
-
-
-
- 是否可见
-
-
-
-
- 系统应用表
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 是否默认激活(Y-是,N-否),只能有一个系统默认激活
- 用户登录后默认展示此系统菜单
-
-
-
-
- 状态(字典 0正常 1停用 2删除)
-
-
-
-
- 排序
-
-
-
-
- 代码生成表
-
-
-
-
- 作者姓名
-
-
-
-
- 是否移除表前缀
-
-
-
-
- 生成方式
-
-
-
-
- 数据库表名
-
-
-
-
- 命名空间
-
-
-
-
- 业务名
-
-
-
-
- 菜单应用分类(应用编码)
-
-
-
-
- 菜单编码
-
-
-
-
- 代码生成字段配置表
-
-
-
-
- 代码生成主表ID
-
-
-
-
- 数据库字段名
-
-
-
-
- 字段描述
-
-
-
-
- .NET数据类型
-
-
-
-
- 作用类型(字典)
-
-
-
-
- 外键实体名称
-
-
-
-
- 外键显示字段
-
-
-
-
- 外键显示字段.NET类型
-
-
-
-
- 字典code
-
-
-
-
- 列表是否缩进(字典)
-
-
-
-
- 是否必填(字典)
-
-
-
-
- 是否是查询条件
-
-
-
-
- 查询方式
-
-
-
-
- 列表显示
-
-
-
-
- 增改
-
-
-
-
- 主键
-
-
-
-
- 数据库中类型(物理类型)
-
-
-
-
- 是否通用字段
-
-
-
-
- 参数配置表
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 属性值
-
-
-
-
- 是否是系统参数(Y-是,N-否)
-
-
-
-
- 备注
-
-
-
-
- 状态(字典 0正常 1停用 2删除)
-
-
-
-
- 常量所属分类的编码,来自于“常量的分类”字典
-
-
-
-
- 字典值表
-
-
-
-
- 字典类型Id
-
-
-
-
- 值
-
-
-
-
- 编码
-
-
-
-
- 排序
-
-
-
-
- 备注
-
-
-
-
- 状态(字典 0正常 1停用 2删除)
-
-
-
-
- 字典类型表
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 排序
-
-
-
-
- 备注
-
-
-
-
- 状态(字典 0正常 1停用 2删除)
-
-
-
-
- 员工表
-
-
-
-
- 工号
-
-
-
-
- 机构Id
-
-
-
-
- 机构名称
-
-
-
-
- 员工附属机构职位表
-
-
-
-
- 员工Id
-
-
-
-
- 机构Id
-
-
-
-
- 职位Id
-
-
-
-
- 员工职位表
-
-
-
-
- 员工Id
-
-
-
-
- 职位Id
-
-
-
-
- 文件信息表
-
-
-
-
- 文件存储位置(1:阿里云,2:腾讯云,3:minio,4:本地)
-
-
-
-
- 文件仓库
-
-
-
-
- 文件名称(上传时候的文件名)
-
-
-
-
- 文件后缀
-
-
-
-
- 文件大小kb
-
-
-
-
- 文件大小信息,计算后的
-
-
-
-
- 存储到bucket的名称(文件唯一标识id)
-
-
-
-
- 存储路径
-
-
-
-
- 系统操作/审计日志表
-
-
-
-
- 表名
-
-
-
-
- 列名
-
-
-
-
- 新值
-
-
-
-
- 旧值
-
-
-
-
- 操作时间
-
-
-
-
- 操作人Id
-
-
-
-
- 操作人名称
-
-
-
-
- 操作方式:新增、更新、删除
-
-
-
-
- 异常日志
-
-
-
-
- 操作人
-
-
-
-
- 名称
-
-
-
-
- 类名
-
-
-
-
- 方法名
-
-
-
-
- 异常名称
-
-
-
-
- 异常信息
-
-
-
-
- 异常源
-
-
-
-
- 堆栈信息
-
-
-
-
- 参数对象
-
-
-
-
- 异常时间
-
-
-
-
- 操作日志表
-
-
-
-
- 名称
-
-
-
-
- 是否执行成功(Y-是,N-否)
-
-
-
-
- 具体消息
-
-
-
-
- IP
-
-
-
-
- 地址
-
-
-
-
- 浏览器
-
-
-
-
- 操作系统
-
-
-
-
- 请求地址
-
-
-
-
- 类名称
-
-
-
-
- 方法名称
-
-
-
-
- 请求方式(GET POST PUT DELETE)
-
-
-
-
- 请求参数
-
-
-
-
- 返回结果
-
-
-
-
- 耗时(毫秒)
-
-
-
-
- 操作时间
-
-
-
-
- 操作人
-
-
-
-
- 访问日志表
-
-
-
-
- 名称
-
-
-
-
- 是否执行成功(Y-是,N-否)
-
-
-
-
- 具体消息
-
-
-
-
- IP
-
-
-
-
- 地址
-
-
-
-
- 浏览器
-
-
-
-
- 操作系统
-
-
-
-
- 访问类型
-
-
-
-
- 访问时间
-
-
-
-
- 访问人
-
-
-
-
- 菜单表
-
-
-
-
- 父Id
-
-
-
-
- 父Ids
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 菜单类型(字典 0目录 1菜单 2按钮)
-
-
-
-
- 图标
-
-
-
-
- 路由地址
-
-
-
-
- 组件地址
-
-
-
-
- 权限标识
-
-
-
-
- 应用分类(应用编码)
-
-
-
-
- 打开方式(字典 0无 1组件 2内链 3外链)
-
-
-
-
- 是否可见(Y-是,N-否)
-
-
-
-
- 内链地址
-
-
-
-
- 重定向地址
-
-
-
-
- 权重(字典 1系统权重 2业务权重)
-
-
-
-
- 排序
-
-
-
-
- 备注
-
-
-
-
- 状态(字典 0正常 1停用 2删除)
-
-
-
-
- 通知公告表
-
-
-
-
- 标题
-
-
-
-
- 内容
-
-
-
-
- 类型(字典 1通知 2公告)
-
-
-
-
- 发布人Id
-
-
-
-
- 发布人姓名
-
-
-
-
- 发布机构Id
-
-
-
-
- 发布机构名称
-
-
-
-
- 发布时间
-
-
-
-
- 撤回时间
-
-
-
-
- 状态(字典 0草稿 1发布 2撤回 3删除)
-
-
-
-
- 通知公告用户表
-
-
-
-
- 通知公告Id
-
-
-
-
- 用户Id
-
-
-
-
- 阅读时间
-
-
-
-
- 状态(字典 0未读 1已读)
-
-
-
-
- Oauth登录用户表
-
-
-
-
- 第三方平台的用户唯一Id
-
-
-
-
- 用户授权的token
-
-
-
-
- 昵称
-
-
-
-
- 头像
-
-
-
-
- 性别
-
-
-
-
- 电话
-
-
-
-
- 邮箱
-
-
-
-
- 位置
-
-
-
-
- 用户网址
-
-
-
-
- 所在公司
-
-
-
-
- 用户来源
-
-
-
-
- 用户备注(各平台中的用户个人介绍)
-
-
-
-
- 在线用户表
-
-
-
-
- 连接Id
-
-
-
-
- 用户Id
-
-
-
-
- 账号
-
-
-
-
- 姓名
-
-
-
-
- 最后连接时间
-
-
-
-
- 最后登录IP
-
-
-
-
- 租户id
-
-
-
-
- 组织机构表
-
-
-
-
- 父Id
-
-
-
-
- 父Ids
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 联系人
-
-
-
-
- 电话
-
-
-
-
- 排序
-
-
-
-
- 备注
-
-
-
-
- 状态(字典 0正常 1停用 2删除)
-
-
-
-
- 职位表
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 排序
-
-
-
-
- 备注
-
-
-
-
- 状态(字典 0正常 1停用 2删除)
-
-
-
-
- 角色表
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 排序
-
-
-
-
- 数据范围类型(字典 1全部数据 2本部门及以下数据 3本部门数据 4仅本人数据 5自定义数据)
-
-
-
-
- 备注
-
-
-
-
- 状态(字典 0正常 1停用 2删除)
-
-
-
-
- 管理员类型-超级管理员_1、非管理员_2
-
-
-
-
- 角色数据范围表
-
-
-
-
- 角色Id
-
-
-
-
- 机构Id
-
-
-
-
- 角色菜单表
-
-
-
-
- 角色Id
-
-
-
-
- 菜单Id
-
-
-
-
- 租户表
-
-
-
-
- 公司名称
-
-
-
-
- 管理员名称
-
-
-
-
- 主机
-
-
-
-
- 电子邮箱
-
-
-
-
- 电话
-
-
-
-
- 数据库连接
-
-
-
-
- 架构
-
-
-
-
- 备注
-
-
-
-
- 租户类型
-
-
-
-
- 定时任务
-
-
-
-
- 任务名称
-
- magic
-
-
-
- 只执行一次
-
-
-
-
- 立即执行(默认等待启动)
-
-
-
-
- 执行类型(并行、列队)
-
-
-
-
- 执行间隔时间(单位秒)
-
- 5
-
-
-
- Cron表达式
-
-
-
-
-
- 定时器类型
-
-
-
-
- 请求url
-
-
-
-
- 请求参数(Post,Put请求用)
-
-
-
-
- Headers(可以包含如:Authorization授权认证)
- 格式:{"Authorization":"userpassword.."}
-
-
-
-
- 请求类型
-
- 2
-
-
-
- 备注
-
-
-
-
- 用户表
-
-
-
-
- 账号
-
-
-
-
- 密码(默认MD5加密)
-
-
-
-
- 昵称
-
-
-
-
- 姓名
-
-
-
-
- 头像
-
-
-
-
- 生日
-
-
-
-
- 性别-男_1、女_2
-
-
-
-
- 邮箱
-
-
-
-
- 手机
-
-
-
-
- 电话
-
-
-
-
- 最后登录IP
-
-
-
-
- 最后登录时间
-
-
-
-
- 管理员类型-超级管理员_1、非管理员_2
-
-
-
-
- 状态-正常_0、停用_1、删除_2
-
-
-
-
- 用户数据范围表
-
-
-
-
- 用户Id
-
-
-
-
- 机构Id
-
-
-
-
- 用户角色表
-
-
-
-
- 用户Id
-
-
-
-
- 系统角色Id
-
-
-
-
- 账号类型
-
-
-
-
- 超级管理员
-
-
-
-
- 管理员
-
-
-
-
- 普通账号
-
-
-
-
- 缓存类型
-
-
-
-
- 内存缓存
-
-
-
-
- Redis缓存
-
-
-
-
- 公共状态
-
-
-
-
- 正常
-
-
-
-
- 停用
-
-
-
-
- 删除
-
-
-
-
- 数据操作类型
-
-
-
-
- 其它
-
-
-
-
- 增加
-
-
-
-
- 删除
-
-
-
-
- 编辑
-
-
-
-
- 更新
-
-
-
-
- 查询
-
-
-
-
- 详情
-
-
-
-
- 树
-
-
-
-
- 导入
-
-
-
-
- 导出
-
-
-
-
- 授权
-
-
-
-
- 强退
-
-
-
-
- 清空
-
-
-
-
- 修改状态
-
-
-
-
- 全部数据
-
-
-
-
- 本部门及以下数据
-
-
-
-
- 本部门数据
-
-
-
-
- 仅本人数据
-
-
-
-
- 自定义数据
-
-
-
-
- 文档类型
-
-
-
-
- 文件夹
-
-
-
-
- 文件
-
-
-
-
- 系统错误码
-
-
-
-
- 用户名或密码不正确
-
-
-
-
- 非法操作!禁止删除自己
-
-
-
-
- 记录不存在
-
-
-
-
- 账号已存在
-
-
-
-
- 旧密码不匹配
-
-
-
-
- 测试数据禁止更改admin密码
-
-
-
-
- 数据已存在
-
-
-
-
- 数据不存在或含有关联引用,禁止删除
-
-
-
-
- 禁止为管理员分配角色
-
-
-
-
- 重复数据或记录含有不存在数据
-
-
-
-
- 禁止为超级管理员角色分配权限
-
-
-
-
- 非法数据
-
-
-
-
- Id不能为空
-
-
-
-
- 所属机构不在自己的数据范围内
-
-
-
-
- 禁止删除超级管理员
-
-
-
-
- 禁止修改超级管理员状态
-
-
-
-
- 没有权限
-
-
-
-
- 账号已冻结
-
-
-
-
- 父机构不存在
-
-
-
-
- 当前机构Id不能与父机构Id相同
-
-
-
-
- 已有相同组织机构,编码或名称相同
-
-
-
-
- 没有权限操作机构
-
-
-
-
- 该机构下有员工禁止删除
-
-
-
-
- 附属机构下有员工禁止删除
-
-
-
-
- 只能增加下级机构
-
-
-
-
- 字典类型不存在
-
-
-
-
- 字典类型已存在
-
-
-
-
- 字典类型下面有字典值禁止删除
-
-
-
-
- 字典值已存在
-
-
-
-
- 字典值不存在
-
-
-
-
- 字典状态错误
-
-
-
-
- 菜单已存在
-
-
-
-
- 路由地址为空
-
-
-
-
- 打开方式为空
-
-
-
-
- 权限标识格式为空
-
-
-
-
- 权限标识格式错误
-
-
-
-
- 权限不存在
-
-
-
-
- 父级菜单不能为当前节点,请重新选择父级菜单
-
-
-
-
- 不能移动根节点
-
-
-
-
- 已存在同名或同编码应用
-
-
-
-
- 默认激活系统只能有一个
-
-
-
-
- 该应用下有菜单禁止删除
-
-
-
-
- 已存在同名或同编码应用
-
-
-
-
- 已存在同名或同编码职位
-
-
-
-
- 该职位下有员工禁止删除
-
-
-
-
- 通知公告状态错误
-
-
-
-
- 通知公告删除失败
-
-
-
-
- 通知公告编辑失败
-
-
-
-
- 文件不存在
-
-
-
-
- 已存在同名或同编码参数配置
-
-
-
-
- 禁止删除系统参数
-
-
-
-
- 已存在同名任务调度
-
-
-
-
- 任务调度不存在
-
-
-
-
- 演示环境禁止修改数据
-
-
-
-
- 已存在同名或同主机租户
-
-
-
-
- 该表代码模板已经生成过
-
-
-
-
- 该类型不存在
-
-
-
-
- 该字段不存在
-
-
-
-
- 该类型不是枚举类型
-
-
-
-
- 该实体不存在
-
-
-
-
- 父菜单不存在
-
-
-
-
- 已存在同名或同编码项目
-
-
-
-
- 已存在相同证件号码人员
-
-
-
-
- 检测数据不存在
-
-
-
-
- 表单不存在
-
-
-
-
- 文件扩展枚举
-
-
-
-
- 文件存储位置
-
-
-
-
- 阿里云
-
-
-
-
- 腾讯云
-
-
-
-
- minio服务器
-
-
-
-
- 本地
-
-
-
-
- 用户
-
-
-
-
- 组织
-
-
-
-
- 性别
-
-
-
-
- 男
-
-
-
-
- 女
-
-
-
-
- 未知
-
-
-
-
- HTTP状态码
-
-
-
-
- 客户端可能继续其请求
-
-
-
-
- 正在更改协议版本或协议
-
-
-
-
- 请求成功,且请求的信息包含在响应中
-
-
-
-
- 请求导致在响应被发送前创建新资源
-
-
-
-
- 请求已被接受做进一步处理
-
-
-
-
- 返回的元信息来自缓存副本而不是原始服务器,因此可能不正确
-
-
-
-
- 已成功处理请求并且响应已被设定为无内容
-
-
-
-
- 客户端应重置(或重新加载)当前资源
-
-
-
-
- 响应是包括字节范围的 GET请求所请求的部分响应
-
-
-
-
- 请求的信息有多种表示形式,默认操作是将此状态视为重定向
-
-
-
-
- 请求的信息已移到 Location头中指定的 URI 处
-
-
-
-
- 请求的信息位于 Location 头中指定的 URI 处
-
-
-
-
- 将客户端自动重定向到 Location 头中指定的 URI
-
-
-
-
- 客户端的缓存副本是最新的
-
-
-
-
- 请求应使用位于 Location 头中指定的 URI 的代理服务器
-
-
-
-
- 服务器未能识别请求
-
-
-
-
- 请求的资源要求身份验证
-
-
-
-
- 需要付费
-
-
-
-
- 服务器拒绝满足请求
-
-
-
-
- 请求的资源不在服务器上
-
-
-
-
- 请求的资源上不允许请求方法(POST或 GET)
-
-
-
-
- 客户端已用 Accept 头指示将不接受资源的任何可用表示形式
-
-
-
-
- 请求的代理要求身份验证
- Proxy-authenticate 头包含如何执行身份验证的详细信息
-
-
-
-
- 客户端没有在服务器期望请求的时间内发送请求
-
-
-
-
- 由于服务器上的冲突而未能执行请求
-
-
-
-
- 请求的资源不再可用
-
-
-
-
- 缺少必需的 Content-length
-
-
-
-
- 为此请求设置的条件失败,且无法执行此请求
- 条件是用条件请求标头(如 If-Match、If-None-Match 或 If-Unmodified-Since)设置的。
-
-
-
-
- 请求太大,服务器无法处理
-
-
-
-
- URI 太长
-
-
-
-
- 请求是不支持的类型
-
-
-
-
- 无法返回从资源请求的数据范围,因为范围的开头在资源的开头之前,或因为范围的结尾在资源的结尾之后
-
-
-
-
- 服务器未能符合Expect头中给定的预期值
-
-
-
-
- 服务器拒绝处理客户端使用当前协议发送的请求,但是可以接受其使用升级后的协议发送的请求
-
-
-
-
- 服务器上发生了一般错误
-
-
-
-
- 服务器不支持请求的函数
-
-
-
-
- 中间代理服务器从另一代理或原始服务器接收到错误响应
-
-
-
-
- 服务器暂时不可用,通常是由于过多加载或维护
-
-
-
-
- 中间代理服务器在等待来自另一个代理或原始服务器的响应时已超时
-
-
-
-
- 服务器不支持请求的HTTP版本
-
-
-
-
- 登陆类型
-
-
-
-
- 登陆
-
-
-
-
- 登出
-
-
-
-
- 注册
-
-
-
-
- 改密
-
-
-
-
- 三方授权登陆
-
-
-
-
- 系统菜单类型
-
-
-
-
- 无
-
-
-
-
- 组件
-
-
-
-
- 内链
-
-
-
-
- 外链
-
-
-
-
- 系统菜单类型
-
-
-
-
- 目录
-
-
-
-
- 菜单
-
-
-
-
- 按钮
-
-
-
-
- 菜单权重
-
-
-
-
- 系统权重
-
-
-
-
- 业务权重
-
-
-
-
- 通知公告状态
-
-
-
-
- 草稿
-
-
-
-
- 发布
-
-
-
-
- 撤回
-
-
-
-
- 删除
-
-
-
-
- 通知
-
-
-
-
- 公告
-
-
-
-
- 通知公告用户状态
-
-
-
-
- 未读
-
-
-
-
- 已读
-
-
-
-
- 查询类型的枚举
-
-
-
-
- 等于
-
-
-
-
- 模糊
-
-
-
-
- 大于
-
-
-
-
- 小于
-
-
-
-
- 不等于
-
-
-
-
- 大于等于
-
-
-
-
- 小于等于
-
-
-
-
- 不为空
-
-
-
-
- http请求类型
-
-
-
-
- 执行内部方法
-
-
-
-
- GET请求
-
-
-
-
- POST请求
-
-
-
-
- PUT请求
-
-
-
-
- DELETE请求
-
-
-
-
- 账号类型
-
-
-
-
- 租户管理员角色
-
-
-
-
- 租户普通角色
-
-
-
-
- 菜单激活类型
-
-
-
-
- 是
-
-
-
-
- 否
-
-
-
-
- B格
-
-
-
-
- 数据过滤,默认用户集合
-
- ISugarQueryable
- 目标表的parameter
- 默认用户集合
- 需要过滤的用户id字段,默认CreatedUserId和OrgId
-
-
-
-
- 检查数据权限,默认用户集合
-
- 检测的id
- 默认用户集合
-
-
-
- 获取当前数据权限,默认用户集合
-
- 默认用户集合
-
-
-
-
- 字典扩展
-
-
-
-
- 将一个字典转化为 QueryString
-
-
-
-
-
-
-
- 将一个字符串 URL 编码
-
-
-
-
-
-
- 移除空值项
-
-
-
-
-
- 枚举扩展
-
-
-
-
- 获取枚举对象Key与名称的字典(缓存)
-
-
-
-
-
-
- 获取枚举对象Key与名称的字典
-
-
-
-
-
-
- 获取枚举类型key与描述的字典(缓存)
-
-
-
-
-
-
-
- 获取枚举类型key与描述的字典(没有描述则获取name)
-
-
-
-
-
-
-
- 从程序集中查找指定枚举类型
-
-
-
-
-
-
-
- 从程序集中加载所有枚举类型
-
-
-
-
-
-
- 通用输入扩展参数(带权限)
-
-
-
-
- 授权菜单
-
-
-
-
- 授权角色
-
-
-
-
- 授权数据
-
-
-
-
- 通用分页输入参数
-
-
-
-
- 搜索值
-
-
-
-
- 当前页码
-
-
-
-
- 页码容量
-
-
-
-
- 搜索开始时间
-
-
-
-
- 搜索结束时间
-
-
-
-
- 排序字段
-
-
-
-
- 排序方法,默认升序,否则降序(配合antd前端,约定参数为 Ascend,Dscend)
-
-
-
-
- 降序排序(不要问我为什么是descend不是desc,前端约定参数就是这样)
-
-
-
-
- 分页拓展类
-
-
-
-
- 分页拓展
-
-
-
-
-
-
-
-
- 通用输入帮助类
-
-
-
-
- 排序方式(默认降序)
-
-
- 是否降序
-
-
-
-
- 小诺分页列表结果
-
-
-
-
- 替换sqlsugar分页
-
-
-
-
-
-
- 规范化RESTful风格返回值
-
-
-
-
- RESTful风格---XIAONUO返回格式
-
-
-
-
-
- 执行成功
-
-
-
-
- 状态码
-
-
-
-
- 错误信息
-
-
-
-
- 数据
-
-
-
-
- 附加数据
-
-
-
-
- 时间戳
-
-
-
-
- 全局异常处理
-
-
-
-
- 请求日志拦截
-
-
-
-
- SqlSugar 工作单元拦截器
-
-
-
-
- 过滤器排序
-
-
-
-
- 排序属性
-
-
-
-
- SqlSugar 对象
-
-
-
-
- 构造函数
-
-
-
-
-
-
-
-
-
-
-
-
-
- 聊天集线器
-
-
-
-
- 连接
-
-
-
-
-
- 断开
-
-
-
-
-
-
- 日志定时任务类
-
-
-
-
- 定期删除异常日志
-
-
-
-
-
-
- 定期删除操作日志
-
-
-
-
-
-
- 定期删除访问日志
-
-
-
-
-
-
- 后台批量写错误日志
-
-
-
-
-
-
- 后台批量写操作日志
-
-
-
-
-
-
- 后台批量写访问日志
-
-
-
-
-
-
- 写日志
-
-
-
-
-
-
-
-
-
- 根据条件删除日志
-
-
-
-
-
-
- Long 类型Json返回处理
-
-
-
- Reads and converts the JSON to type .
- The reader.
- The type to convert.
- An object that specifies serialization options to use.
- The converted value.
-
-
- Writes a specified value as JSON.
- The writer to write to.
- The value to convert to JSON.
- An object that specifies serialization options to use.
-
-
-
- 日志写入文件的组件
-
-
-
-
- 日志写入文件扩展
-
-
-
-
- 添加workerservice项目控制台日志格式化扩展
-
-
-
-
-
-
- 添加api项目控制台日志格式化扩展
-
-
-
-
-
-
- 用户管理
-
-
-
-
- 用户id
-
-
-
-
- 账号
-
-
-
-
- 昵称
-
-
-
-
- 是否超级管理员
-
-
-
-
- 是否租户管理员
-
-
-
-
- AccessToken参数
-
-
-
-
- 用户标识
-
-
-
-
- Token 类型
-
-
-
-
- AccessToken
-
-
-
-
- 用于刷新 AccessToken 的 Token
-
-
-
-
- 此 AccessToken 对应的权限
-
-
-
-
- AccessToken 过期时间
-
-
-
-
- 错误的详细描述
-
-
-
-
- 获取的Token是否包含错误
-
-
-
-
-
-
- 微信用户参数
-
-
-
-
- 用户特权信息,json 数组,如微信沃卡用户为(chinaunicom)
-
-
-
-
- 获取的用户是否包含错误
-
-
-
-
-
-
- 发起授权
-
-
-
-
-
-
- 获取微信Token
-
-
-
-
-
-
-
- 获取微信用户基本信息
-
-
-
-
-
-
-
- 刷新微信Token
-
-
-
-
-
-
- 系统应用参数
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 是否默认激活(Y-是,N-否),只能有一个系统默认激活
- 用户登录后默认展示此系统菜单
-
-
-
-
- 状态(字典 0正常 1停用 2删除)
-
-
-
-
- 排序
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 应用Id
-
-
-
-
- 应用Id
-
-
-
-
- 系统应用参数
-
-
-
-
- 应用Id
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 是否默认
-
-
-
-
- 排序
-
-
-
-
- 系统应用服务
-
-
-
-
- 获取用户应用相关信息
-
-
-
-
-
-
- 分页查询系统应用
-
-
-
-
-
-
- 增加系统应用
-
-
-
-
-
-
- 删除系统应用
-
-
-
-
-
-
- 更新系统应用
-
-
-
-
-
-
- 获取系统应用
-
-
-
-
-
-
- 获取系统应用列表
-
-
-
-
-
-
- 设为默认应用
-
-
-
-
-
-
- 修改用户状态
-
-
-
-
-
-
- 登录授权相关服务
-
-
-
-
- 用户登录
-
-
- 默认用户名/密码:admin/admin
-
-
-
-
- 模拟租户登录
-
-
- 默认用户名/密码:admin/admin
-
-
-
-
- 获取当前登录用户信息
-
-
-
-
-
- 退出
-
-
-
-
-
- 获取验证码开关
-
-
-
-
-
- 获取验证码(默认点选模式)
-
-
-
-
-
- 校验验证码
-
-
-
-
-
-
- 登录输入参数
-
-
-
-
- 租户id
-
- superAdmin
-
-
-
- 用户名
-
- superAdmin
-
-
-
- 密码
-
- 123456
-
-
-
- 用户登录输出参数
-
-
-
-
- 主键
-
-
-
-
- 账号
-
-
-
-
- 昵称
-
-
-
-
- 姓名
-
-
-
-
- 头像
-
-
-
-
- 生日
-
-
-
-
- 性别(字典 1男 2女)
-
-
-
-
- 邮箱
-
-
-
-
- 手机
-
-
-
-
- 电话
-
-
-
-
- 管理员类型(0超级管理员 1非管理员)
-
-
-
-
- 最后登陆IP
-
-
-
-
- 最后登陆时间
-
-
-
-
- 最后登陆地址
-
-
-
-
- 最后登陆所用浏览器
-
-
-
-
- 最后登陆所用系统
-
-
-
-
- 员工信息
-
-
-
-
- 具备应用信息
-
-
-
-
- 角色信息
-
-
-
-
- 权限信息
-
-
-
-
- 登录菜单信息---AntDesign版本菜单
-
-
-
-
- 数据范围(机构)信息
-
-
-
-
- 注册输入参数
-
-
-
-
- 用户名
-
- superAdmin
-
-
-
- 公司名
-
- superAdmin
-
-
-
- 密码
-
- 123456
-
-
-
- 系统缓存服务
-
-
-
-
- 获取数据范围缓存(机构Id集合)
-
-
-
-
-
-
- 获取数据范围缓存(用户Id集合)
-
-
-
-
-
-
- 缓存数据范围(机构Id集合)
-
-
-
-
-
-
-
- 缓存数据范围(用户Id集合)
-
-
-
-
-
-
-
- 获取菜单缓存
-
-
-
-
-
-
-
- 缓存菜单
-
-
-
-
-
-
-
-
- 获取权限缓存(按钮)
-
-
-
-
-
-
- 缓存权限
-
-
-
-
-
-
-
- 获取所有缓存关键字
-
-
-
-
-
- 获取所有按钮权限
-
-
-
-
-
- 设置所有按钮权限
-
-
-
-
-
-
- 删除指定关键字缓存
-
-
-
-
-
-
- 删除指定关键字缓存
-
-
-
-
-
-
- 删除某特征关键字缓存
-
-
-
-
-
-
- 设置缓存
-
-
-
-
-
-
-
- 设置缓存
-
-
-
-
-
-
-
- 获取缓存
-
-
-
-
-
-
- 获取缓存
-
-
-
-
-
-
- 获取缓存
-
-
-
-
-
-
-
- 获取缓存
-
-
-
-
-
-
-
- 检查给定 key 是否存在
-
- 键
-
-
-
-
- 检查给定 key 是否存在
-
- 键
-
-
-
-
- 代码生成详细配置服务
-
-
-
-
- 代码生成详细配置列表
-
-
-
-
-
-
- 增加
-
-
-
-
-
-
- 删除
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
- 详情
-
-
-
-
-
-
- 批量增加
-
-
-
-
-
-
- 代码生成器服务
-
-
-
-
- 分页查询
-
-
-
-
-
-
- 增加
-
-
-
-
-
-
- 删除
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
- 详情
-
-
-
-
-
-
- 获取数据库表(实体)集合
-
-
-
-
-
- 根据表名获取列
-
-
-
-
-
- 获取数据表列(实体属性)集合
-
-
-
-
-
- 代码生成_本地项目
-
-
-
-
-
- 获取模板文件路径集合
-
-
-
-
-
- 设置生成文件路径
-
-
-
-
-
-
- 代码生成详细配置参数
-
-
-
-
- 主键Id
-
-
-
-
- 代码生成主表ID
-
-
-
-
- 数据库字段名
-
-
-
-
- 数据库字段名(首字母小写)
-
-
-
-
- 字段描述
-
-
-
-
- .NET类型
-
-
-
-
- 作用类型(字典)
-
-
-
-
- 外键实体名称
-
-
-
-
- 外键实体名称(首字母小写)
-
-
-
-
- 外键显示字段
-
-
-
-
- 外键显示字段(首字母小写)
-
-
-
-
- 外键显示字段.NET类型
-
-
-
-
- 字典code
-
-
-
-
- 列表是否缩进(字典)
-
-
-
-
- 是否必填(字典)
-
-
-
-
- 是否是查询条件
-
-
-
-
- 查询方式
-
-
-
-
- 列表显示
-
-
-
-
- 增改
-
-
-
-
- 主外键
-
-
-
-
- 数据库中类型(物理类型)
-
-
-
-
- 是否是通用字段
-
-
-
-
- 代码生成参数类
-
-
-
-
- 作者姓名
-
-
-
-
- 类名
-
-
-
-
- 是否移除表前缀
-
-
-
-
- 生成方式
-
-
-
-
- 数据库表名
-
-
-
-
- 命名空间
-
-
-
-
- 业务名(业务代码包名称)
-
-
-
-
- 功能名(数据库表名称)
-
-
-
-
- 菜单应用分类(应用编码)
-
-
-
-
- 菜单父级
-
-
-
-
- 数据库表名
-
-
-
-
- 业务名(业务代码包名称)
-
-
-
-
- 命名空间
-
-
-
-
- 作者姓名
-
-
-
-
- 生成方式
-
-
-
-
- 菜单应用分类(应用编码)
-
-
-
-
- 菜单父级
-
-
-
-
- 代码生成器Id
-
-
-
-
- 代码生成器Id
-
-
-
-
- 代码生成参数类
-
-
-
-
- 代码生成器Id
-
-
-
-
- 作者姓名
-
-
-
-
- 类名
-
-
-
-
- 是否移除表前缀
-
-
-
-
- 生成方式
-
-
-
-
- 数据库表名
-
-
-
-
- 包名
-
-
-
-
- 业务名(业务代码包名称)
-
-
-
-
- 功能名(数据库表名称)
-
-
-
-
- 菜单应用分类(应用编码)
-
-
-
-
- 菜单父级
-
-
-
-
- 数据库表列
-
-
-
-
- 字段名
-
-
-
-
- 数据库中类型
-
-
-
-
- .NET字段类型
-
-
-
-
- 字段描述
-
-
-
-
- 主外键
-
-
-
-
- 数据库表列表参数
-
-
-
-
- 表名(字母形式的)
-
-
-
-
- 实体名称
-
-
-
-
- 创建时间
-
-
-
-
- 更新时间
-
-
-
-
- 表名称描述(注释)(功能名)
-
-
-
-
- 作者姓名
-
-
-
-
- 是否移除表前缀
-
-
-
-
- 生成方式
-
-
-
-
- 数据库表名
-
-
-
-
- 数据库表名(经过组装的)
-
-
-
-
- 代码包名
-
-
-
-
- 生成时间(string类型的)
-
-
-
-
- 数据库表中字段集合
-
-
-
-
- 业务名
-
-
-
-
- 获取库表信息
-
-
-
-
-
-
- 参数配置
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 属性值
-
-
-
-
- 是否是系统参数(Y-是,N-否)
-
-
-
-
- 备注
-
-
-
-
- 状态(字典 0正常 1停用 2删除)
-
-
-
-
- 常量所属分类的编码,来自于“常量的分类”字典
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 应用Id
-
-
-
-
- 应用Id
-
-
-
-
- 系统参数配置服务
-
-
-
-
- 分页获取系统参数配置
-
-
-
-
-
-
- 获取系统参数配置列表
-
-
-
-
-
-
- 增加系统参数配置
-
-
-
-
-
-
- 删除系统参数配置
-
-
-
-
-
-
- 更新系统参数配置
-
-
-
-
-
-
- 获取系统参数配置
-
-
-
-
-
-
- 获取配置信息
-
-
-
-
-
-
- 更新配置缓存
-
-
-
-
-
-
-
- 获取演示环境开关是否开启,默认为false
-
-
-
-
-
- 获取验证码开关标识
-
-
-
-
-
- 获取默认密码
-
-
-
-
-
- 数据库管理
-
-
-
-
- 添加列
-
-
-
-
-
- 删除列
-
-
-
-
-
- 编辑列
-
-
-
-
-
- 获取表字段
-
-
-
-
-
-
- 获取所有表
-
-
-
-
-
- 新增表
-
-
-
-
-
- 删除表
-
-
-
-
-
- 编辑表
-
-
-
-
-
- 获取模板文件路径集合
-
-
-
-
-
- 设置生成文件路径
-
-
-
-
-
-
-
-
- student
-
-
-
-
-
- Student
-
-
-
-
-
- AutoIncrementEntity
-
-
-
-
-
- Magic.Application
-
-
-
- 字典值参数
-
-
-
-
- 字典类型Id
-
-
-
-
- 值
-
-
-
-
- 编码
-
-
-
-
- 排序
-
-
-
-
- 备注
-
-
-
-
- 状态(字典 0正常 1停用 2删除)
-
-
-
-
- 字典类型Id
-
-
-
-
- 字典类型Id
-
-
-
-
- 值
-
-
-
-
- 编码
-
-
-
-
- 字典值Id
-
-
-
-
- 字典值Id
-
-
-
-
- 字典值参数
-
-
-
-
- 字典Id
-
-
-
-
- 字典类型与字典值构造的树
-
-
-
-
- Id
-
-
-
-
- 父Id
-
-
-
-
- 编码-对应字典值的编码
-
-
-
-
- 名称-对应字典值的value
-
-
-
-
- 子节点集合
-
-
-
-
- 字典类型参数
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 排序
-
-
-
-
- 备注
-
-
-
-
- 状态(字典 0正常 1停用 2删除)
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 编号Id
-
-
-
-
- Id
-
-
-
-
- 编码
-
-
-
-
- 字典值服务
-
-
-
-
- 分页查询字典值
-
-
-
-
-
-
- 获取某个字典类型下字典值列表
-
-
-
-
-
- 增加字典值
-
-
-
-
-
-
- 删除字典值
-
-
-
-
-
-
- 更新字典值
-
-
-
-
-
-
- 字典值详情
-
-
-
-
-
-
- 修改字典值状态
-
-
-
-
-
-
- 根据字典类型Id获取字典值集合
-
-
-
-
-
-
- 删除字典下所有值
-
-
-
-
-
- 根据字典Code返回字典值列表
-
-
-
-
-
-
- 字典类型服务
-
-
-
-
- 分页查询字典类型
-
-
-
-
-
- 获取字典类型列表
-
-
-
-
-
- 获取字典类型下所有字典值
-
-
-
-
-
-
- 添加字典类型
-
-
-
-
-
-
- 删除字典类型
-
-
-
-
-
-
- 更新字典类型
-
-
-
-
-
-
- 字典类型详情
-
-
-
-
-
-
- 更新字典类型状态
-
-
-
-
-
-
- 字典类型与字典值构造的字典树
-
-
-
-
-
- 文档服务
-
-
-
-
- 分页查询文档
-
-
-
-
-
-
- 文件夹树
-
-
-
-
-
- 上传文件
-
-
-
-
-
-
- 上传文件夹
-
-
-
-
-
-
- 新建文件夹
-
-
-
-
-
-
- 删除文档
-
-
-
-
-
-
- 批量删除
-
-
-
-
-
-
- 移动文档
-
-
-
-
-
-
- 更新文件夹
-
-
-
-
-
-
- 获取文档
-
-
-
-
-
-
- 下载文件
-
-
-
-
-
-
- 预览文件
-
-
-
-
-
-
- 创建Pids格式
- 如果pid是0顶级节点,pids就是 [0];
- 如果pid不是顶级节点,pids就是 pid文档的 pids + [pid] + ,
-
-
-
-
-
-
- 获取文件大小
-
-
-
-
-
-
- 上传文件
-
-
-
-
-
-
-
- 获取父级
-
-
-
-
-
-
- 文档输出参数
-
-
-
-
- Id
-
-
-
-
- 父Id
-
-
-
-
- 名称
-
-
-
-
- 文档类型:文件、文件夹
-
-
-
-
- 文件后缀
-
-
-
-
- 文件大小kb
-
-
-
-
- 标签
-
-
-
-
- 备注
-
-
-
-
- 文档输入参数
-
-
-
-
- 父Id
-
-
-
-
- 父ID列表
-
-
-
-
- 名称
-
-
-
-
- 文档类型:文件、文件夹
-
-
-
-
- 文件后缀
-
-
-
-
- 文件大小kb
-
-
-
-
- 存储后的文件名
-
-
-
-
- 标签
-
-
-
-
- 备注
-
-
-
-
- 创建开始时间
-
-
-
-
- 创建结束时间
-
-
-
-
- 修改结束时间
-
-
-
-
- 修改结束时间
-
-
-
-
- 文件类型
-
-
-
-
- 是否删除
-
-
-
-
- 上传文件输入参数
-
-
-
-
- Id
-
-
-
-
- 批量删除入参
-
-
-
-
- Id列表
-
-
-
-
- 移动入参
-
-
-
-
- Id列表
-
-
-
-
- 父Id
-
-
-
-
- Id
-
-
-
-
- 文档输出参数
-
-
-
-
- Id
-
-
-
-
- 父Id
-
-
-
-
- 名称
-
-
-
-
- 文档类型:文件、文件夹
-
-
-
-
- 文件类型
-
-
-
-
- 文件后缀
-
-
-
-
- 文件大小kb
-
-
-
-
- 文件大小kb
-
-
-
-
- 标签
-
-
-
-
- 标签数组
-
-
-
-
- 备注
-
-
-
-
- 创建时间
-
-
-
-
- 更新时间
-
-
-
-
- 创建用户ID
-
-
-
-
- 创建人用户名
-
-
-
-
- 修改人ID
-
-
-
-
- 修改人用户名
-
-
-
-
- 树查询输出
-
-
-
-
- Id
-
-
-
-
- 父Id
-
-
-
-
- 名称
-
-
-
-
- 附属机构和职位参数
-
-
-
-
- 员工Id
-
-
-
-
- 附属机构id
-
-
-
-
- 附属机构编码
-
-
-
-
- 附属机构名称
-
-
-
-
- 附属职位id
-
-
-
-
- 附属职位编码
-
-
-
-
- 附属职位名称
-
-
-
-
- 员工信息参数
-
-
-
-
- 员工Id
-
-
-
-
- 工号
-
-
-
-
- 机构id
-
-
-
-
- 机构名称
-
-
-
-
- 机构与职位信息
-
-
-
-
- 职位信息
-
-
-
-
- 员工信息参数2
-
-
-
-
- 员工Id
-
-
-
-
- 工号
-
-
-
-
- 机构Id
-
-
-
-
- 机构名称
-
-
-
-
- 附属机构
-
-
-
-
- 职位集合
-
-
-
-
- 员工职位参数
-
-
-
-
- 员工Id
-
-
-
-
- 职位Id
-
-
-
-
- 职位编码
-
-
-
-
- 职位名称
-
-
-
-
- 员工附属机构和职位服务
-
-
-
-
- 保存或编辑附属机构相关信息
-
-
-
-
-
- 获取附属机构和职位信息
-
-
-
-
-
-
- 根据机构Id判断该附属机构下是否有员工
-
-
-
-
-
-
- 根据职位Id判断该附属职位下是否有员工
-
-
-
-
-
-
- 根据员工Id删除对应的员工-附属信息
-
-
-
-
-
-
- 员工职位服务
-
-
-
-
- 增加或编辑员工职位相关信息
-
- 员工Id(用户Id)
- 职位id集合
-
-
-
-
- 获取所属职位信息
-
- 员工Id(用户Id)
-
-
-
- 根据职位Id判断该职位下是否有员工
-
-
-
-
-
-
- 根据员工Id删除对用的员工-职位信息
-
-
-
-
-
-
- 员工服务
-
-
-
-
- 获取用户员工相关信息(包括登录)
-
-
-
-
-
-
- 获取用户员工相关信息
-
-
-
-
-
-
- 增加或编辑员工相关信息
-
-
-
-
-
- 修改员工相关机构信息
-
-
-
-
-
-
-
- 根据机构Id判断该机构下是否有员工
-
-
-
-
-
-
- 根据员工Id删除对应的员工表信息
-
-
-
-
-
-
- 获取员工机构Id
-
-
-
-
-
-
- 获取子机构用户
-
-
-
-
-
-
- 枚举输入参数
-
-
-
-
- 枚举类型名称
-
- Gender
-
-
-
- 实体名称
-
-
-
-
- 字段名称
-
-
-
-
- 枚举输出参数
-
-
-
-
- 字典Id
-
-
-
-
- 字典值
-
-
-
-
- 枚举值服务
-
-
-
-
- 获取所有枚举值
-
-
-
-
-
- 通过枚举类型获取枚举值集合
-
-
-
-
-
-
- 通过实体字段类型获取相关集合(目前仅支持枚举类型)
-
-
-
-
-
-
- 上传文件参数
-
-
-
-
- 文件存储位置(1:阿里云,2:腾讯云,3:minio,4:本地)
-
-
-
-
- 文件仓库
-
-
-
-
- 文件名称(上传时候的文件名)
-
-
-
-
- 文件后缀
-
-
-
-
- 文件大小kb
-
-
-
-
- 文件大小信息,计算后的
-
-
-
-
- 存储到bucket的名称(文件唯一标识id)
-
-
-
-
- 存储路径
-
-
-
-
- 文件Id
-
-
-
-
- 上传文件参数
-
-
-
-
- 文件Id
-
-
-
-
- 文件服务
-
-
-
-
- 分页获取文件列表
-
-
-
-
-
-
- 获取文件列表
-
-
-
-
-
-
- 删除文件
-
-
-
-
-
-
- 获取文件详情
-
-
-
-
-
-
- 预览文件
-
-
-
-
-
-
- 上传文件
-
-
-
-
-
-
- 下载文件
-
-
-
-
-
-
- 上传头像
-
-
-
-
-
-
- 上传文档
-
-
-
-
-
-
- 上传富文本图片
-
-
-
-
-
-
- 上传商店图片
-
-
-
-
-
-
- 上传文件
-
-
-
-
-
-
-
- 上传文件
-
- 文件
- 存储路径
- 文件存储位置
-
-
-
-
- 异常日志参数
-
-
-
-
- 操作人
-
-
-
-
- 名称
-
-
-
-
- 类名
-
-
-
-
- 方法名
-
-
-
-
- 异常名称
-
-
-
-
- 异常信息
-
-
-
-
- 异常时间
-
-
-
-
- 异常日志参数
-
-
-
-
- 请求日志参数
-
-
-
-
- 名称
-
-
-
-
- 是否执行成功(Y-是,N-否)
-
-
-
-
- 具体消息
-
-
-
-
- ip
-
-
-
-
- 地址
-
-
-
-
- 浏览器
-
-
-
-
- 操作系统
-
-
-
-
- 请求地址
-
-
-
-
- 类名称
-
-
-
-
- 方法名称
-
-
-
-
- 请求方式(GET POST PUT DELETE)
-
-
-
-
- 请求参数
-
-
-
-
- 返回结果
-
-
-
-
- 耗时(毫秒)
-
-
-
-
- 操作时间
-
-
-
-
- 操作人
-
-
-
-
- 请求日志参数
-
-
-
-
- 访问日志参数
-
-
-
-
- 名称
-
-
-
-
- 是否执行成功(Y-是,N-否)
-
-
-
-
- 具体消息
-
-
-
-
- IP
-
-
-
-
- 地址
-
-
-
-
- 浏览器
-
-
-
-
- 操作系统
-
-
-
-
- 访问类型
-
-
-
-
- 访问时间
-
-
-
-
- 访问人
-
-
-
-
- 访问日志参数
-
-
-
-
- 异常日志服务
-
-
-
-
- 分页查询异常日志
-
-
-
-
-
-
- 清空异常日志
-
-
-
-
-
- 操作日志服务
-
-
-
-
- 分页查询操作日志
-
-
-
-
-
-
- 清空操作日志
-
-
-
-
-
- 访问日志服务
-
-
-
-
- 分页查询访问日志
-
-
-
-
-
-
- 清空访问日志
-
-
-
-
-
- 登录菜单-AntDesign菜单类型
-
-
-
-
- 所属应用
-
-
-
-
- id
-
-
-
-
- 父id
-
-
-
-
- 路由名称, 必须设置,且不能重名
-
-
-
-
- 组件
-
-
-
-
- 重定向地址, 访问这个路由时, 自定进行重定向
-
-
-
-
- 路由元信息(路由附带扩展信息)
-
-
-
-
- 路径
-
-
-
-
- 控制路由和子路由是否显示在 sidebar
-
-
-
-
- 路由元信息内部类
-
-
-
-
- 路由标题, 用于显示面包屑, 页面标题 *推荐设置
-
-
-
-
- 图标
-
-
-
-
- 是否可见
-
-
-
-
- 如需外部打开,增加:_blank
-
-
-
-
- 内链打开http链接
-
-
-
-
- 菜单参数
-
-
-
-
- 父Id
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 菜单类型(字典 0目录 1菜单 2按钮)
-
-
-
-
- 图标
-
-
-
-
- 路由地址
-
-
-
-
- 组件地址
-
-
-
-
- 权限标识
-
-
-
-
- 应用分类(应用编码)
-
-
-
-
- 打开方式(字典 0无 1组件 2内链 3外链)
-
-
-
-
- 是否可见(Y-是,N-否)
-
-
-
-
- 内链地址
-
-
-
-
- 重定向地址
-
-
-
-
- 权重(字典 1系统权重 2业务权重)
-
-
-
-
- 排序
-
-
-
-
- 备注
-
-
-
-
- 菜单类型(字典 0目录 1菜单 2按钮)
-
-
-
-
- 菜单Id
-
-
-
-
- 菜单Id
-
-
-
-
- 父Id
- DeleteMenuInput
-
-
-
- 应用编码
- DeleteMenuInput
-
-
-
- 菜单树(列表形式)
-
-
-
-
- 菜单Id
-
-
-
-
- 子节点
-
-
-
-
- 应用名称
-
-
-
-
- 应用编码
-
-
-
-
- 菜单树---授权、新增编辑时选择
-
-
-
-
- 主键
-
-
-
-
- 父Id
-
-
-
-
- 名称
-
-
-
-
- 值
-
-
-
-
- 排序,越小优先级越高
-
-
-
-
- 子节点
-
-
-
-
- 应用名称
-
-
-
-
- 应用编码
-
-
-
-
- 引用排序
-
-
-
-
- 应用编码
-
-
-
-
- 菜单Id集合
-
-
-
-
- 系统菜单服务
-
-
-
-
- 获取用户权限(按钮权限标识集合)
-
-
-
-
-
-
- 获取所有权限集合
-
-
-
-
-
- 获取用户AntDesign菜单集合
-
-
-
-
-
-
-
- 获取用户菜单所属的应用编码集合
-
-
-
-
-
-
- 系统菜单列表(树表)
-
-
-
-
-
-
- 创建Pids格式
- 如果pid是0顶级节点,pids就是 [0];
- 如果pid不是顶级节点,pids就是 pid菜单的 pids + [pid] + ,
-
-
-
-
-
-
- 增加和编辑时检查参数
-
-
-
-
-
- 增加系统菜单
-
-
-
-
-
-
- 删除系统菜单
-
-
-
-
-
-
- 更新系统菜单
-
-
-
-
-
-
- 获取系统菜单
-
-
-
-
-
-
- 获取系统菜单树,用于新增、编辑时选择上级节点
-
-
-
-
-
-
- 获取系统菜单树,用于给角色授权时选择
-
-
-
-
-
-
- 根据应用编码判断该机构下是否有状态为正常的菜单
-
-
-
-
-
-
- 根据系统应用切换菜单
-
-
-
-
-
-
- 服务器信息服务
-
-
-
-
- 获取服务器资源信息
-
-
-
-
-
- 获取服务器基本参数
-
-
-
-
-
- 动态获取网络信息
-
-
-
-
-
- 通知公告参数
-
-
-
-
- 标题
-
-
-
-
- 内容
-
-
-
-
- 类型(字典 1通知 2公告)
-
-
-
-
- 发布人Id
-
-
-
-
- 发布人姓名
-
-
-
-
- 发布机构Id
-
-
-
-
- 发布机构名称
-
-
-
-
- 发布时间
-
-
-
-
- 撤回时间
-
-
-
-
- 状态(字典 0草稿 1发布 2撤回 3删除)
-
-
-
-
- 系统通知公告详情参数
-
-
-
-
- 通知到的用户Id集合
-
-
-
-
- 通知到的用户阅读信息集合
-
-
-
-
- 用户Id
-
-
-
-
- 用户名称
-
-
-
-
- 状态(字典 0未读 1已读)
-
-
-
-
- 阅读时间
-
-
-
-
- 通知公告参数
-
-
-
-
- 标题
-
-
-
-
- 内容
-
-
-
-
- 类型(字典 1通知 2公告)
-
-
-
-
- 状态(字典 0草稿 1发布 2撤回 3删除)
-
-
-
-
- 通知到的人
-
-
-
-
- 标题
-
-
-
-
- 内容
-
-
-
-
- 类型(字典 1通知 2公告)
-
-
-
-
- 状态(字典 0草稿 1发布 2撤回 3删除)
-
-
-
-
- 通知到的人
-
-
-
-
- Id
-
-
-
-
- Id
-
-
-
-
- 状态(字典 0草稿 1发布 2撤回 3删除)
-
-
-
-
- 通知公告接收参数
-
-
-
-
- Id
-
-
-
-
- 阅读状态(字典 0未读 1已读)
-
-
-
-
- 阅读时间
-
-
-
-
- 通知公告服务
-
-
-
-
- 分页查询通知公告
-
-
-
-
-
-
- 增加通知公告
-
-
-
-
-
-
- 删除通知公告
-
-
-
-
-
-
- 更新通知公告
-
-
-
-
-
-
- 获取通知公告详情
-
-
-
-
-
-
- 修改通知公告状态
-
-
-
-
-
-
- 获取接收的通知公告
-
-
-
-
-
-
- 未处理消息
-
-
-
-
-
-
- 更新发布信息
-
-
-
-
-
- 通知公告用户
-
-
-
-
- 增加
-
-
-
-
-
-
-
-
- 更新
-
-
-
-
-
-
-
-
- 获取通知公告用户列表
-
-
-
-
-
-
- 设置通知公告读取状态
-
-
-
-
-
-
-
-
- OAuth服务
-
-
-
-
- 微信登录授权
-
-
-
-
- 微信登录授权回调
-
-
-
-
-
-
-
-
- 获取微信用户基本信息
-
-
-
-
-
-
-
- 在线用户服务
-
-
-
-
- 获取在线用户信息
-
-
-
-
-
- 组织机构参数
-
-
-
-
- 父Id
-
-
-
-
- 父Ids
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 电话
-
-
-
-
- 排序
-
-
-
-
- 备注
-
-
-
-
- 状态(字典 0正常 1停用 2删除)
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 机构Id
-
-
-
-
- 机构Id
-
-
-
-
- 组织机构参数
-
-
-
-
- 机构Id
-
-
-
-
- 组织机构树
-
-
-
-
- Id
-
-
-
-
- 父Id
-
-
-
-
- 名称
-
-
-
-
- 值
-
-
-
-
- 排序,越小优先级越高
-
-
-
-
- 子节点
-
-
-
-
- 上一级Id
-
-
-
-
- 组织机构服务
-
-
-
-
- 分页查询组织机构
-
-
-
-
-
-
- (非管理员)获取当前用户数据范围(机构Id)
-
-
-
-
-
-
- 获取组织机构列表
-
-
-
-
-
-
- 增加组织机构
-
-
-
-
-
-
- 填充父Ids字段
-
-
-
-
-
-
- 删除组织机构
-
-
-
-
-
-
- 更新组织机构
-
-
-
-
-
-
- 获取组织机构信息
-
-
-
-
-
-
- 根据节点Id获取所有子节点Id集合,包含自己
-
-
-
-
-
-
- 获取组织机构树
-
-
-
-
-
- 根据数据范围类型获取当前用户的数据范围(机构Id)集合
-
-
-
-
-
-
-
- 获取所有的机构组织Id集合
-
-
-
-
-
- 职位参数
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 排序
-
-
-
-
- 备注
-
-
-
-
- 状态(字典 0正常 1停用 2删除)
-
-
-
-
- 当前页码
-
-
-
-
- 页码容量
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 职位Id
-
-
-
-
- 职位Id
-
-
-
-
- 职位服务
-
-
-
-
- 分页获取职位
-
-
-
-
-
-
- 获取职位列表
-
-
-
-
-
- 增加职位
-
-
-
-
-
-
- 删除职位
-
-
-
-
-
-
- 更新职位
-
-
-
-
-
-
- 获取职位
-
-
-
-
-
-
- 角色参数
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 排序
-
-
-
-
- 数据范围类型(字典 1全部数据 2本部门及以下数据 3本部门数据 4仅本人数据 5自定义数据)
-
-
-
-
- 备注
-
-
-
-
- 名称
-
-
-
-
- 编码
-
-
-
-
- 角色Id
-
-
-
-
- 角色Id
-
-
-
-
- 角色Id
-
-
-
-
- 登录用户角色参数
-
-
-
-
- Id
-
-
-
-
- 编码
-
-
-
-
- 名称
-
-
-
-
- 角色数据范围服务
-
-
-
-
- 授权角色数据范围
-
-
-
-
-
-
- 根据角色Id集合获取角色数据范围集合
-
-
-
-
-
-
- 根据机构Id集合删除对应的角色-数据范围关联信息
-
-
-
-
-
-
- 根据角色Id删除对应的角色-数据范围关联信息
-
-
-
-
-
-
- 角色菜单
-
-
-
-
- 获取角色的菜单Id集合
-
-
-
-
-
-
- 授权角色菜单
-
-
-
-
-
-
- 根据菜单Id集合删除对应的角色-菜单表信息
-
-
-
-
-
-
- 根据角色Id删除对应的角色-菜单表关联信息
-
-
-
-
-
-
- 清理租户下角色的权限
-
- 租户id
- 租户管理员的角色id
-
-
-
-
- 角色服务
-
-
-
-
- 获取用户角色相关信息(登录)
-
-
-
-
-
-
- 分页获取角色列表
-
-
-
-
-
-
- 获取角色列表
-
-
-
-
-
-
- 角色下拉(用于授权角色时选择)
-
-
-
-
-
- 增加角色
-
-
-
-
-
-
- 删除角色
-
-
-
-
-
-
- 更新角色
-
-
-
-
-
-
- 获取角色
-
-
-
-
-
-
- 授权角色菜单
-
-
-
-
-
-
- 授权角色数据范围
-
-
-
-
-
-
- 根据角色Id集合获取数据范围Id集合
-
-
-
-
-
-
-
- 根据角色Id获取角色名称
-
-
-
-
-
-
- 获取角色拥有菜单Id集合
-
-
-
-
-
-
- 获取角色拥有数据Id集合
-
-
-
-
-
-
- 租户参数
-
-
-
-
- 公司名称
-
-
-
-
- 管理员名称
-
-
-
-
- 主机
-
-
-
-
- 电子邮箱
-
-
-
-
- 电话号码
-
-
-
-
- 模式
-
-
-
-
- 数据库连接
-
-
-
-
- 备注
-
-
-
-
- 创建时间
-
-
-
-
- 公司名称
-
-
-
-
- 管理员名称
-
-
-
-
- 主机名称
-
-
-
-
- 数据库连接
-
-
-
-
- 电子邮箱
-
-
-
-
- 租户Id
-
-
-
-
- 租户Id
-
-
-
-
- 租户参数
-
-
-
-
- 租户Id
-
-
-
-
- 名称
-
-
-
-
- 名称
-
-
-
-
- 主机
-
-
-
-
- 电子邮箱
-
-
-
-
- 电话号码
-
-
-
-
- 模式
-
-
-
-
- 数据库连接
-
-
-
-
- 备注
-
-
-
-
- 创建时间
-
-
-
-
- 租户服务
-
-
-
-
- 分页查询租户
-
-
-
-
-
-
- 增加租户
-
-
-
-
-
-
- 新增租户时,初始化数据
-
-
-
-
-
- 删除租户
-
-
-
-
-
-
- 更新租户
-
-
-
-
-
-
- 获取租户
-
-
-
-
-
-
- 授权租户管理员角色菜单
-
-
-
-
-
-
- 获取租户管理员角色拥有菜单Id集合
-
-
-
-
-
-
- 重置租户管理员密码
-
-
-
-
-
-
- 获取租户管理员用户
-
-
-
-
-
-
- 任务调度参数
-
-
-
-
- 任务名称
-
-
-
-
- 只执行一次
-
-
-
-
- 立即执行(默认等待启动)
-
-
-
-
- 执行类型(并行、列队)
-
-
-
-
- 执行间隔时间(单位秒)
-
- 5
-
-
-
- Cron表达式
-
-
-
-
- 定时器类型
-
-
-
-
- 请求url
-
-
-
-
- 请求参数(Post,Put请求用)
-
-
-
-
- Headers(可以包含如:Authorization授权认证)
- 格式:{"Authorization":"userpassword.."}
-
-
-
-
- 请求类型
-
-
-
-
- 备注
-
-
-
-
- 任务Id
-
-
-
-
- 任务信息---任务详情
-
-
-
-
- Id
-
-
-
-
- 已执行次数
-
-
-
-
- 定时器状态
-
-
-
-
- 异常信息
-
-
-
-
- 本地任务信息
-
-
-
-
- 任务名称
-
-
-
-
- 只执行一次
-
-
-
-
- 立即执行(默认等待启动)
-
-
-
-
- 执行类型(并行、列队)
-
-
-
-
- 执行间隔时间(单位秒)
-
-
-
-
- Cron表达式
-
-
-
-
- 定时器类型
-
-
-
-
- 请求url
-
-
-
-
- 请求类型
-
- 2
-
-
-
- 备注
-
-
-
-
- 任务方法信息
-
-
-
-
- 方法名
-
-
-
-
- 方法所属类的Type对象
-
-
-
-
- 任务调度服务
-
-
-
-
- 分页获取任务列表
-
-
-
-
-
-
- 获取所有本地任务
-
-
-
-
-
- 增加任务
-
-
-
-
-
-
- 删除任务
-
-
-
-
-
-
- 修改任务
-
-
-
-
-
-
- 查看任务
-
-
-
-
-
-
- 停止任务
-
-
-
-
-
-
- 启动任务
-
-
-
-
-
-
- 新增定时任务
-
-
-
-
-
- 启动自启动任务
-
-
-
-
- 获取所有本地任务
-
-
-
-
-
- 回收站输出参数
-
-
-
-
- Id
-
-
-
-
- 父Id
-
-
-
-
- 父ID列表
-
-
-
-
- 名称
-
-
-
-
- 类型
-
-
-
-
- 文件后缀
-
-
-
-
- 文件大小kb
-
-
-
-
- 存储后的文件名
-
-
-
-
- 标签
-
-
-
-
- 备注
-
-
-
-
- 回收站输出参数
-
-
-
-
- Id
-
-
-
-
- 父Id
-
-
-
-
- 父ID列表
-
-
-
-
- 名称
-
-
-
-
- 类型
-
-
-
-
- 文件后缀
-
-
-
-
- 文件大小kb
-
-
-
-
- 存储后的文件名
-
-
-
-
- 标签
-
-
-
-
- 备注
-
-
-
-
- 回收站服务
-
-
-
-
- 分页查询回收站
-
-
-
-
-
-
- 恢复一个
-
-
-
-
-
-
- 恢复多个
-
-
-
-
-
-
- 永久删除
-
-
-
-
-
-
- 批量删除
-
-
-
-
-
-
- 清空
-
-
-
-
-
- 重命名
-
-
-
-
-
-
-
- AuthToken参数
-
-
-
-
- OAuth用户参数
-
-
-
-
- 用户参数
-
-
-
-
- 账号
-
-
-
-
- 密码
-
-
-
-
- 昵称
-
-
-
-
- 姓名
-
-
-
-
- 头像
-
-
-
-
- 生日
-
-
-
-
- 性别-男_1、女_2
-
-
-
-
- 邮箱
-
-
-
-
- 手机
-
-
-
-
- 电话
-
-
-
-
- 状态-正常_0、停用_1、删除_2
-
-
-
-
- 员工信息
-
-
-
-
- 搜索状态(字典 0正常 1停用 2删除)
-
-
-
-
- 账号
-
-
-
-
- 密码
-
-
-
-
- 确认密码
-
-
-
-
- 用户Id
-
-
-
-
- 用户Id
-
-
-
-
- 用户Id
-
-
-
-
- 密码
-
-
-
-
- 新密码
-
-
-
-
- 确认密码
-
-
-
-
- 用户Id
-
-
-
-
- 头像文件路径标识
-
-
-
-
- 用户参数
-
-
-
-
- Id
-
-
-
-
- 账号
-
-
-
-
- 昵称
-
-
-
-
- 姓名
-
-
-
-
- 头像
-
-
-
-
- 生日
-
-
-
-
- 性别-男_1、女_2
-
-
-
-
- 邮箱
-
-
-
-
- 手机
-
-
-
-
- 电话
-
-
-
-
- 状态-正常_0、停用_1、删除_2
-
-
-
-
- 员工信息
-
-
-
-
- 所属租户
-
-
-
-
- 用户数据范围服务
-
-
-
-
- 授权用户数据
-
-
-
-
-
-
- 获取用户的数据范围Id集合
-
-
-
-
-
-
- 根据机构Id集合删除对应的用户-数据范围关联信息
-
-
-
-
-
-
- 根据用户Id删除对应的用户-数据范围关联信息
-
-
-
-
-
-
- 用户角色服务
-
-
-
-
- 获取用户的角色Id集合
-
-
-
-
-
-
- 授权用户角色
-
-
-
-
-
-
- 获取用户所有角色的数据范围(组织机构Id集合)
-
-
-
-
-
-
-
- 根据角色Id删除对应的用户-角色表关联信息
-
-
-
-
-
-
- 根据用户Id删除对应的用户-角色表关联信息
-
-
-
-
-
-
- 用户服务
-
-
-
-
- 分页查询用户
-
-
-
-
-
-
- 增加用户
-
-
-
-
-
-
- 删除用户
-
-
-
-
-
-
- 更新用户
-
-
-
-
-
-
- 查看用户
-
-
-
-
-
-
- 修改用户状态
-
-
-
-
-
-
- 授权用户角色
-
-
-
-
-
-
- 授权用户数据范围
-
-
-
-
-
-
- 更新用户信息
-
-
-
-
-
-
- 修改用户密码
-
-
-
-
-
-
- 获取用户拥有角色
-
-
-
-
-
-
- 获取用户拥有数据
-
-
-
-
-
-
- 重置用户密码
-
-
-
-
-
-
- 修改用户头像
-
-
-
-
-
-
- 获取用户选择器
-
-
-
-
-
-
- 用户导出
-
-
-
-
-
-
- 用户导入
-
-
-
-
-
-
- 根据用户Id获取用户
-
-
-
-
-
-
- 将OAuth账号转换成账号
-
-
-
-
-
-
-
- 获取用户数据范围(机构Id集合)并缓存
-
-
-
-
-
-
- 检查普通用户数据范围
-
-
-
-
-
-
- 获取用户数据范围(用户Id集合)
-
-
-
-
-
- 检查普通用户数据范围
-
-
-
-
-
-
- 简单泛型队列
-
-
-
-
- 新增
-
-
-
-
-
- 取出
-
-
-
-
-
-
- 总数
-
-
-
-
-
- 清理
-
-
-
-
- 分页泛型集合
-
-
-
-
-
- 页码
-
-
-
-
- 页容量
-
-
-
-
- 总条数
-
-
-
-
- 总页数
-
-
-
-
- 当前页集合
-
-
-
-
- 是否有上一页
-
-
-
-
- 是否有下一页
-
-
-
-
- 分页集合
-
-
-
-
- SqlSugar 仓储实现类
-
-
-
-
-
- 初始化 SqlSugar 客户端
-
-
-
-
- 数据库上下文
-
-
-
-
- 构造函数
-
-
-
-
-
- 实体集合
-
-
-
-
- 原生 Ado 对象
-
-
-
-
- 获取总数
-
-
-
-
-
-
- 获取总数
-
-
-
-
-
-
- 检查是否存在
-
-
-
-
-
-
- 检查是否存在
-
-
-
-
-
-
- 通过主键获取实体
-
-
-
-
-
-
- 获取一个实体
-
-
-
-
-
-
- 获取一个实体
-
-
-
-
-
-
- 获取一个实体
-
-
-
-
-
-
- 获取一个实体
-
-
-
-
-
-
- 获取列表
-
-
-
-
-
- 获取列表
-
-
-
-
-
-
- 获取列表
-
-
-
-
-
-
-
-
- 获取列表
-
-
-
-
-
- 获取列表
-
-
-
-
-
-
- 获取列表
-
-
-
-
-
-
-
-
- 新增一条记录
-
-
-
-
-
-
- 新增多条记录
-
-
-
-
-
-
- 新增多条记录
-
-
-
-
-
-
- 新增一条记录返回自增Id
-
-
-
-
-
-
- 新增一条记录返回雪花Id
-
-
-
-
-
-
- 新增一条记录返回实体
-
-
-
-
-
-
- 新增一条记录
-
-
-
-
-
-
- 新增多条记录
-
-
-
-
-
-
- 新增多条记录
-
-
-
-
-
-
- 新增一条记录返回自增Id
-
-
-
-
-
-
- 新增一条记录返回雪花Id
-
-
-
-
-
-
- 新增一条记录返回实体
-
-
-
-
-
-
- 更新一条记录
-
-
-
-
-
-
- 更新多条记录
-
-
-
-
-
-
- 更新多条记录
-
-
-
-
-
-
- 更新一条记录
-
-
-
-
-
-
- 更新记录
-
- 更新的条件
- 更新的内容
-
-
-
-
- 更新记录
-
- 更新的条件
- 更新的内容
-
-
-
-
- 更新多条记录
-
-
-
-
-
-
- 更新多条记录
-
-
-
-
-
-
- 删除一条记录
-
-
-
-
-
-
- 删除一条记录
-
-
-
-
-
-
- 删除多条记录
-
-
-
-
-
-
- 自定义条件删除记录
-
-
-
-
-
-
- 删除一条记录
-
-
-
-
-
-
- 删除一条记录
-
-
-
-
-
-
- 删除多条记录
-
-
-
-
-
-
- 自定义条件删除记录
-
-
-
-
-
-
- 根据表达式查询多条记录
-
-
-
-
-
-
- 根据表达式查询多条记录
-
-
-
-
-
-
-
- 构建查询分析器
-
-
-
-
-
- 构建查询分析器
-
-
-
-
-
-
- 直接返回数据库结果
-
-
-
-
-
- 直接返回数据库结果
-
-
-
-
-
-
- 直接返回数据库结果
-
-
-
-
-
- 直接返回数据库结果
-
-
-
-
-
-
- 切换仓储(注意使用环境)
-
- 实体类型
- 仓储
-
-
-
- 当前db
-
-
-
-
- 当前db
-
-
-
-
- 当前db
-
-
-
-
- 所有db
-
-
-
-
- 所有db
-
-
-
-
- 所有db
-
-
-
-
- SqlsugarScope的配置
- Scope必须用单例注入
- 不可以用Action委托注入
-
-
-
-
-
- 获取当前租户id
-
-
-
-
-
- 判断是不是超级管理员
-
-
-
-
-
- 添加 SqlSugar 拓展
-
-
-
-
-
-
-
-
- 添加 SqlSugar 拓展
-
-
-
-
-
-
-
-
- 代码生成帮助类
-
-
-
-
- 数据类型转显示类型
-
-
-
-
-
-
- 枚举的Entity类
-
-
-
-
- 枚举的描述
-
-
-
-
- 枚举名称
-
-
-
-
- 枚举对象的值
-
-
-
-
- 枚举工具类
-
-
-
-
- 获取枚举对象Key与名称的字典(缓存)
-
-
-
-
-
-
- 获取枚举对象Key与名称的字典
-
-
-
-
-
-
- 获取枚举类型key与描述的字典(缓存)
-
-
-
-
-
-
-
- 获取枚举类型key与描述的字典(没有描述则获取name)
-
-
-
-
-
-
-
- 从程序集中查找指定枚举类型
-
-
-
-
-
-
-
- 从程序集中加载所有枚举类型
-
-
-
-
-
-
- 获取枚举的Description
-
-
-
-
-
-
- 获取枚举的Description
-
-
-
-
-
-
- 将枚举转成枚举信息集合
-
-
-
-
-
-
- 枚举ToList
-
-
-
-
-
-
-
- DateTime扩展
-
-
- 验证扩展类
-
-
- 转换扩展类
-
-
-
-
- 得到问好
-
-
-
-
-
- 获取指定年月的第一天
-
-
-
-
-
-
-
-
- 获取指定年月的第一天
-
-
-
-
-
-
-
-
- 获取指定年月的最后一天
-
-
-
-
-
-
-
-
- 获取指定年月的最后一天
-
-
-
-
-
-
-
-
- 获取当前月的第一天
-
-
-
-
-
-
- 获取当前月的最后一天
-
-
-
-
-
-
- 获取上月的第一天
-
-
-
-
-
-
- 获取上月的最后一天
-
-
-
-
-
-
- 获取本周时间
-
-
-
-
-
-
- 获取上周时间
-
-
-
-
-
-
- 获取当天时间
-
-
-
-
-
-
- 获取昨天时间
-
-
-
-
-
-
- 计算两个时间的差
-
-
-
-
-
-
-
-
- 检查 Object 是否为 NULL
-
-
-
-
-
-
- 检查 Object 是否为 NULL 或者 0
-
-
-
-
-
-
- 检查是否为 AJAX 请求
-
-
-
-
-
-
- 将object转换为long,若转换失败,则返回0。不抛出异常。
-
-
-
-
-
-
- 将object转换为long,若转换失败,则返回指定值。不抛出异常。
-
-
-
-
-
-
-
- 将object转换为int,若转换失败,则返回0。不抛出异常。
-
-
-
-
-
-
- 将object转换为int,若转换失败,则返回指定值。不抛出异常。
- null返回默认值
-
-
-
-
-
-
-
- 将object转换为short,若转换失败,则返回0。不抛出异常。
-
-
-
-
-
-
- 将object转换为short,若转换失败,则返回指定值。不抛出异常。
-
-
-
-
-
-
-
- 将object转换为demical,若转换失败,则返回指定值。不抛出异常。
-
-
-
-
-
-
-
- 将object转换为demical,若转换失败,则返回0。不抛出异常。
-
-
-
-
-
-
- 将object转换为bool,若转换失败,则返回false。不抛出异常。
-
-
-
-
-
-
- 将object转换为bool,若转换失败,则返回指定值。不抛出异常。
-
-
-
-
-
-
-
- 将object转换为float,若转换失败,则返回0。不抛出异常。
-
-
-
-
-
-
- 将object转换为float,若转换失败,则返回指定值。不抛出异常。
-
-
-
-
-
-
-
- 将string转换为Guid,若转换失败,则返回Guid.Empty。不抛出异常。
-
-
-
-
-
-
- 将string转换为DateTime,若转换失败,则返回日期最小值。不抛出异常。
-
-
-
-
-
-
- 将string转换为DateTime,若转换失败,则返回默认值。
-
-
-
-
-
-
-
- 将object转换为string,若转换失败,则返回""。不抛出异常。
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 将object转换为double,若转换失败,则返回0。不抛出异常。
-
-
-
-
-
-
- 将object转换为double,若转换失败,则返回指定值。不抛出异常。
-
-
-
-
-
-
-
- 强制转换类型
-
-
-
-
-
-
-
- HTTP网络工具
-
-
-
-
- 客户端IP地址
-
-
-
-
- 得到客户端IP地址
-
-
-
-
-
- 得到局域网IP地址
-
-
-
-
-
- 得到远程Ip地址
-
-
-
-
-
- 请求UserAgent信息
-
-
-
-
- 请求Url
-
-
-
-
- 得到操作系统版本
-
-
-
-
-
- 公网信息
- 慎用,如果不是直接请求接口,而是通过代理转发,拿到的是服务器的公网信息
-
-
-
-
-
- 根据IP地址获取公网信息
-
-
-
-
-
- UserAgent信息
-
-
-
-
-
- 远程路径Encode处理,会保证开头是/,结尾也是/
-
-
-
-
-
-
- 标准化远程目录路径,会保证开头是/,结尾也是/ ,如果命名不规范,存在保留字符,会返回空字符
-
- 要标准化的远程路径
-
-
-
-
- 万网Ip信息Model类
-
-
-
-
- Ip地址
-
-
-
-
- 省份
-
-
-
-
- 省份邮政编码
-
-
-
-
- 城市
-
-
-
-
- 城市邮政编码
-
-
-
-
- 地理信息
-
-
-
-
- 运营商
-
-
-
-
- UserAgent 信息Model类
-
-
-
-
- 手机型号
-
-
-
-
- 操作系统(版本)
-
-
-
-
- 浏览器(版本)
-
-
-
-
- 天气预报工具类
-
-
-
-
- 天气信息
-
-
-
-
- 时间
-
-
-
-
- 最高温度
-
-
-
-
- 风力
-
-
-
-
- 最低温度
-
-
-
-
- 分向
-
-
-
-
- 类型
-
-
-
-
- 昨日天气
-
-
-
-
- 城市
-
-
-
-
- 未来五天天气
-
-
-
-
- 感冒
-
-
-
-
- 温度
-
-
-
-
- 是否成功
-
-
-
-
- 失败描述
-
-
-
-
- 数据
-
-
-
-
- 状态
-
-
-
-
- 描述
-
-
-
-
- 图片工具类
-
-
-
-
- 获取外网Url图片的二进制数组
-
-
-
-
-
-
- 保存二进制流到文件
-
-
-
-
-
-
- 保存外网Url到文件
-
- 外网图片Url
- 要保存的文件名称
-
-
-
-
- 删除文件夹里面所有的文件
-
-
-
-
-
-
- 无损压缩图片
-
- 原图片地址
- 压缩后保存图片地址
- 压缩后宽度
- 压缩后高度
- 压缩质量(数字越小压缩率越高)
- 压缩后图片的最大大小
- 是否为第一次调用
-
-
-
-
- Json序列化工具类
-
-
-
-
- JSON 字符串转 Object
-
-
-
-
-
-
-
- JSON 字符串转 Object
-
-
-
-
-
-
- Object 转 JSON字符串
-
-
-
-
-
-
- JSON 字符串转 JObject
-
-
-
-
-
-
- Dictionary 字符串转 Object
-
-
-
-
-
-
-
- 把数组转为逗号连接的字符串
-
-
-
-
-
-
-
- 判断是否有交集
-
-
-
-
-
-
-
-
- 获取服务器信息
-
-
-
-
- 获取资源使用信息
-
-
-
-
-
- 获取基本参数
-
-
-
-
-
- 动态获取网络信息
-
-
-
-
-
- 是否Linux
-
-
-
-
-
- 获取CPU使用率
-
-
-
-
-
- 获取系统运行时间
-
-
-
-
-
- 获取内存信息
-
-
-
-
-
- 毫秒转天时分秒
-
-
-
-
-
-
- 获取外网IP和地理位置
-
-
-
-
-
- 系统Shell命令
-
-
-
-
- Bash命令
-
-
-
-
-
-
- cmd命令
-
-
-
-
-
-
-
-
-
-
-
-
- 当前正在联网的网卡信息
-
-
-
-
-
- 获取当前网卡的网络速度
-
-
-
-
-
-
- 小程序工具类
-
-
-
-
- 解密数据获取小程序用户信息
-
- 包括敏感数据在内的完整用户信息的加密数据
- auth.code2Session获取的session_key
- 加密算法的初始向量
- 如遇异常返回 ""
-
-
-
- 基础解析
-
- 包括敏感数据在内的完整用户信息的加密数据
- auth.code2Session获取的session_key
- 加密算法的初始向量
-
-
-
-
- 小程序登录解密后的用户信息Model
-
-
-
-
- 手机号
-
-
-
-
- 纯手机号
-
-
-
-
- 区号
-
-
-
-
- 阿里云oss文件上传工具类
-
-
-
-
- 上传本地文件(走阿里云内网传输)
-
-
-
-
-
-
-
- 上传一个图片
-
- 图片经过base64加密后的结果
- 文件名,例如:Emplyoee/dzzBack.jpg
-
-
-
- 上传本地文件
-
-
-
- 返回参数说明 1.本地文件不存在 2.文件oss上已存在 3.上传失败 4.上传成功
-
-
-
-
- 上传一个图片
-
- 图片字节
- 文件名,例如:Emplyoee/dzzBack.jpg
-
-
-
-
- 获取鉴权后的URL,URL有效日期默认一小时
-
- 文件名,例如:Emplyoee/dzzBack.jpg
-
-
-
-
- 获取鉴权后的URL
-
- 文件名,例如:Emplyoee/dzzBack.jpg
- URL有效日期,例如:DateTime.Now.AddHours(1)
-
-
-
-
- 将文件转换成byte[] 数组
-
- 文件路径文件名称
- byte[]
-
-
-
- 删除文件
-
- 文件id
- 文件url
-
-
-
- 删除文件夹
-
- 文件id
- 文件url
-
-
-
- 判断文件是否存在
-
-
-
-
-
-
- 类型转换
-
-
-
-
-
- 反射工具
-
-
-
-
- 获取字段特性
-
-
-
-
-
-
-
- 普通 字符串 转换为 base64 字符串
-
-
-
-
- base64 字符串 转换为 普通 字符串
-
-
-
-
- 字符串验证帮助类
-
-
-
-
- 验证输入字符串为带小数点正数
-
- 输入字符
- 返回一个bool类型的值
-
-
-
- 验证输入字符串为带小数点正负数
-
- 输入字符
- 返回一个bool类型的值
-
-
-
- 验证中国电话格式是否有效,格式010-85849685
-
- 输入字符
- 返回一个bool类型的值
-
-
-
- 验证输入字符串为电话号码
-
- 输入字符
- 返回一个bool类型的值
-
-
-
- 验证是否是有效传真号码
-
- 输入字符
- 返回一个bool类型的值
-
-
-
- 验证手机号是否合法 号段为13,14,15,16,17,18,19 0,86开头将自动识别
-
- 输入字符
- 返回一个bool类型的值
-
-
-
- 验证身份证是否有效
-
- 输入字符
- 返回一个bool类型的值
-
-
-
- 验证输入字符串为18位的身份证号码
-
- 输入字符
- 返回一个bool类型的值
-
-
-
- 验证输入字符串为15位的身份证号码
-
- 输入字符
- 返回一个bool类型的值
-
-
-
- 验证是否是有效邮箱地址
-
- 输入字符
- 返回一个bool类型的值
-
-
-
- 验证是否是有效QQ邮箱地址
-
- 输入字符
- 返回一个bool类型的值
-
-
-
- 验证是否只含有汉字
-
- 输入字符
-
-
-
-
- 是否有多余的字符 防止SQL注入
-
- 输入字符
-
-
-
-
- 是否由数字、26个英文字母或者下划线組成的字串
-
- 输入字符
-
-
-
-
- 由数字、26个英文字母、汉字組成的字串
-
- 输入字符
-
-
-
-
- 是否由数字、26个英文字母組成的字串
-
- 输入字符
-
-
-
-
- 验证输入字符串为邮政编码
-
- 输入字符
- 返回一个bool类型的值
-
-
-
- 检查对象的输入长度
-
- 输入字符
- 指定的长度
- false 太长,true -太短
-
-
-
- 判断用户输入是否为日期
-
- 输入字符
- 返回一个bool类型的值
-
- 可判断格式如下(其中-可替换为/,不影响验证)
- YYYY | YYYY-MM | YYYY-MM-DD | YYYY-MM-DD HH:MM:SS | YYYY-MM-DD HH:MM:SS.FFF
-
-
-
-
- 树基类
-
-
-
-
- 获取节点id
-
-
-
-
-
- 获取节点父id
-
-
-
-
-
- 设置Children
-
-
-
-
-
- 递归工具类,用于遍历有父子关系的节点,例如菜单树,字典树等等
-
-
-
-
-
- 顶级节点的父节点Id(默认0)
-
-
-
-
- 构造树节点
-
-
-
-
-
-
- 构造子节点集合
-
-
-
-
-
-
-
diff --git a/Myshipping.Core/Manager/UserManager.cs b/Myshipping.Core/Manager/UserManager.cs
index 389533aa..2b5fba22 100644
--- a/Myshipping.Core/Manager/UserManager.cs
+++ b/Myshipping.Core/Manager/UserManager.cs
@@ -1,7 +1,7 @@
using Furion;
-namespace Magic.Core;
+namespace Myshipping.Core;
///
/// 用户管理
diff --git a/Myshipping.Core/Myshipping.Core.csproj b/Myshipping.Core/Myshipping.Core.csproj
index 67f7f591..864dec56 100644
--- a/Myshipping.Core/Myshipping.Core.csproj
+++ b/Myshipping.Core/Myshipping.Core.csproj
@@ -3,7 +3,7 @@
net6.0
1701;1702;1591
- Magic.Core.xml
+ Myshipping.Core.xml
1.0.0
@@ -16,7 +16,7 @@
- Magic.Core
+ Myshipping.Core
false
@@ -36,15 +36,10 @@
-
-
-
-
-
diff --git a/Myshipping.Core/Myshipping.Core.xml b/Myshipping.Core/Myshipping.Core.xml
index e1a91840..1363e0b6 100644
--- a/Myshipping.Core/Myshipping.Core.xml
+++ b/Myshipping.Core/Myshipping.Core.xml
@@ -1,89 +1,89 @@
- Magic.Core
+ Myshipping.Core
-
+
启用用操作日志
-
+
SqlSugar 工作单元配置特性
-
+
构造函数
-
+
构造函数
- 支持传入事务隔离级别 参数值
+ 支持传入事务隔离级别 参数值
事务隔离级别
-
+
事务隔离级别
- 默认:,参见:
+ 默认:,参见:
说明:当事务A更新某条数据的时候,不容许其他事务来更新该数据,但可以进行读取操作
-
+
缓存接口
-
+
用于在 key 存在时删除 key
键
-
+
用于在 key 存在时删除 key
键
-
+
用于在 key 模板存在时删除
key模板
-
+
检查给定 key 是否存在
键
-
+
检查给定 key 是否存在
键
-
+
获取指定 key 的值
键
-
+
获取指定 key 的值
@@ -91,14 +91,14 @@
键
-
+
获取指定 key 的值
键
-
+
获取指定 key 的值
@@ -106,14 +106,14 @@
键
-
+
设置指定 key 的值,所有写入参数object都支持string | byte[] | 数值 | 对象
键
值
-
+
设置指定 key 的值,所有写入参数object都支持string | byte[] | 数值 | 对象
@@ -121,7 +121,7 @@
值
有效期
-
+
设置指定 key 的值,所有写入参数object都支持string | byte[] | 数值 | 对象
@@ -129,7 +129,7 @@
值
-
+
设置指定 key 的值,所有写入参数object都支持string | byte[] | 数值 | 对象
@@ -138,28 +138,28 @@
有效期
-
+
获取所有缓存
-
+
内存缓存
-
+
Redis缓存
-
+
点选验证码
-
+
生成验证码图片
@@ -168,7 +168,7 @@
-
+
转换为相对于图片的百分比单位
@@ -176,7 +176,7 @@
相对于图片的绝对尺寸
(int:xPercent, int:yPercent)
-
+
加载字体
@@ -184,2825 +184,2825 @@
大小
字形(常规/粗体/斜体/粗斜体)
-
+
随机绘制字符串
-
+
验证码验证
-
+
记录正确位置
-
+
点击验证码输入参数
-
+
验证码类型
-
+
坐标点集合
-
+
Token
-
+
验证码输出参数
-
+
常规验证码
-
+
生成验证码图片
-
+
验证码验证
-
+
常规验证码输入
-
+
验证码类型
-
+
验证码字符
-
+
Token
-
+
缓存配置
-
+
缓存类型
-
+
Redis配置
-
+
系统配置
-
+
超管是否可以查看所有租户的数据
-
+
是否开启全局请求日志
-
+
雪花Id配置
-
+
取值范围0~63,默认1
-
+
第三方配置
-
+
微信
-
+
上传文件
-
+
阿里云
-
+
头像
-
+
文档
-
+
商店
-
+
编辑器
-
+
默认
-
+
数据库配置
-
+
默认数据库编号
-
+
默认数据库类型
-
+
默认数据库连接字符串
-
+
业务库集合
-
+
JWT配置
-
+
是否验证密钥
-
+
密钥
-
+
是否验证签发方
-
+
签发方
-
+
是否验证签收方
-
+
签收方
-
+
是否验证过期时间
-
+
过期时间
-
+
过期时间容错值
-
+
数据库参数
-
+
数据库编号
-
+
数据库类型
-
+
数据库连接字符串
-
+
文件参数
-
+
路径
-
+
大小
-
+
类型
-
+
第三方参数
-
+
id
-
+
key
-
+
回调地址
-
+
scope
-
+
用户Id
-
+
账号
-
+
名称
-
+
是否超级管理
-
+
租户Id
-
+
租户类型
-
+
租户名称
-
+
用户缓存
-
+
菜单缓存
-
+
权限缓存
-
+
数据范围缓存
-
+
验证码缓存
-
+
库表实体信息缓存
-
+
所有权限缓存
-
+
程序集
-
+
删除字段
-
+
自定义租户基类实体
-
+
租户id
-
+
自定义实体基类
-
+
创建时间
-
+
更新时间
-
+
创建者Id
-
+
创建者名称
-
+
修改者Id
-
+
修改者名称
-
+
软删除
-
+
更新信息列
-
+
假删除的列,包含更新信息
-
+
递增主键实体基类
-
+
主键Id
-
+
主键实体基类
-
+
主键Id
-
+
文档表
-
+
父Id
-
+
父ID列表
-
+
名称
-
+
文档类型:文件、文件夹
-
+
文件后缀
-
+
文件大小kb
-
+
文件路径
-
+
存储后的文件名
-
+
标签
-
+
备注
-
+
是否可见
-
+
系统应用表
-
+
名称
-
+
编码
-
+
是否默认激活(Y-是,N-否),只能有一个系统默认激活
用户登录后默认展示此系统菜单
-
+
状态(字典 0正常 1停用 2删除)
-
+
排序
-
+
代码生成表
-
+
作者姓名
-
+
是否移除表前缀
-
+
生成方式
-
+
数据库表名
-
+
命名空间
-
+
业务名
-
+
菜单应用分类(应用编码)
-
+
菜单编码
-
+
代码生成字段配置表
-
+
代码生成主表ID
-
+
数据库字段名
-
+
字段描述
-
+
.NET数据类型
-
+
作用类型(字典)
-
+
外键实体名称
-
+
外键显示字段
-
+
外键显示字段.NET类型
-
+
字典code
-
+
列表是否缩进(字典)
-
+
是否必填(字典)
-
+
是否是查询条件
-
+
查询方式
-
+
列表显示
-
+
增改
-
+
主键
-
+
数据库中类型(物理类型)
-
+
是否通用字段
-
+
参数配置表
-
+
名称
-
+
编码
-
+
属性值
-
+
是否是系统参数(Y-是,N-否)
-
+
备注
-
+
状态(字典 0正常 1停用 2删除)
-
+
常量所属分类的编码,来自于“常量的分类”字典
-
+
字典值表
-
+
字典类型Id
-
+
值
-
+
编码
-
+
排序
-
+
备注
-
+
状态(字典 0正常 1停用 2删除)
-
+
字典类型表
-
+
名称
-
+
编码
-
+
排序
-
+
备注
-
+
状态(字典 0正常 1停用 2删除)
-
+
员工表
-
+
工号
-
+
机构Id
-
+
机构名称
-
+
员工附属机构职位表
-
+
员工Id
-
+
机构Id
-
+
职位Id
-
+
员工职位表
-
+
员工Id
-
+
职位Id
-
+
文件信息表
-
+
文件存储位置(1:阿里云,2:腾讯云,3:minio,4:本地)
-
+
文件仓库
-
+
文件名称(上传时候的文件名)
-
+
文件后缀
-
+
文件大小kb
-
+
文件大小信息,计算后的
-
+
存储到bucket的名称(文件唯一标识id)
-
+
存储路径
-
+
系统操作/审计日志表
-
+
表名
-
+
列名
-
+
新值
-
+
旧值
-
+
操作时间
-
+
操作人Id
-
+
操作人名称
-
+
操作方式:新增、更新、删除
-
+
异常日志
-
+
操作人
-
+
名称
-
+
类名
-
+
方法名
-
+
异常名称
-
+
异常信息
-
+
异常源
-
+
堆栈信息
-
+
参数对象
-
+
异常时间
-
+
操作日志表
-
+
名称
-
+
是否执行成功(Y-是,N-否)
-
+
具体消息
-
+
IP
-
+
地址
-
+
浏览器
-
+
操作系统
-
+
请求地址
-
+
类名称
-
+
方法名称
-
+
请求方式(GET POST PUT DELETE)
-
+
请求参数
-
+
返回结果
-
+
耗时(毫秒)
-
+
操作时间
-
+
操作人
-
+
访问日志表
-
+
名称
-
+
是否执行成功(Y-是,N-否)
-
+
具体消息
-
+
IP
-
+
地址
-
+