update:修改项目名称从Dilon到Ewide
This commit is contained in:
BIN
Api/.vs/Dilon/DesignTimeBuild/.dtbcache.v2
Normal file
BIN
Api/.vs/Dilon/DesignTimeBuild/.dtbcache.v2
Normal file
Binary file not shown.
BIN
Api/.vs/Dilon/v16/.suo
Normal file
BIN
Api/.vs/Dilon/v16/.suo
Normal file
Binary file not shown.
@@ -1,69 +1,69 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<doc>
|
<doc>
|
||||||
<assembly>
|
<assembly>
|
||||||
<name>Dilon.Application</name>
|
<name>Dilon.Application</name>
|
||||||
</assembly>
|
</assembly>
|
||||||
<members>
|
<members>
|
||||||
<member name="T:Dilon.Application.CodeGenTest">
|
<member name="T:Dilon.Application.CodeGenTest">
|
||||||
<summary>
|
<summary>
|
||||||
代码生成实体测试(EF)
|
代码生成实体测试(EF)
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:Dilon.Application.CodeGenTest.Name">
|
<member name="P:Dilon.Application.CodeGenTest.Name">
|
||||||
<summary>
|
<summary>
|
||||||
名称
|
名称
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:Dilon.Application.CodeGenTest.NickName">
|
<member name="P:Dilon.Application.CodeGenTest.NickName">
|
||||||
<summary>
|
<summary>
|
||||||
昵称
|
昵称
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:Dilon.Application.CodeGenTest.Birthday">
|
<member name="P:Dilon.Application.CodeGenTest.Birthday">
|
||||||
<summary>
|
<summary>
|
||||||
生日
|
生日
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:Dilon.Application.CodeGenTest.Age">
|
<member name="P:Dilon.Application.CodeGenTest.Age">
|
||||||
<summary>
|
<summary>
|
||||||
年龄
|
年龄
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="T:Dilon.Application.Test">
|
<member name="T:Dilon.Application.Test">
|
||||||
<summary>
|
<summary>
|
||||||
SqlSugar实体
|
SqlSugar实体
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:Dilon.Application.Test.Id">
|
<member name="P:Dilon.Application.Test.Id">
|
||||||
<summary>
|
<summary>
|
||||||
雪花Id
|
雪花Id
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:Dilon.Application.Test.Name">
|
<member name="P:Dilon.Application.Test.Name">
|
||||||
<summary>
|
<summary>
|
||||||
名称
|
名称
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:Dilon.Application.Test.Age">
|
<member name="P:Dilon.Application.Test.Age">
|
||||||
<summary>
|
<summary>
|
||||||
年龄
|
年龄
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="P:Dilon.Application.Test.CreateTime">
|
<member name="P:Dilon.Application.Test.CreateTime">
|
||||||
<summary>
|
<summary>
|
||||||
创建时间
|
创建时间
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="T:Dilon.Application.TestService">
|
<member name="T:Dilon.Application.TestService">
|
||||||
<summary>
|
<summary>
|
||||||
业务服务及集成SqlSugar用法事例
|
业务服务及集成SqlSugar用法事例
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
<member name="M:Dilon.Application.TestService.GetDescription">
|
<member name="M:Dilon.Application.TestService.GetDescription">
|
||||||
<summary>
|
<summary>
|
||||||
测试方法
|
测试方法
|
||||||
</summary>
|
</summary>
|
||||||
<returns></returns>
|
<returns></returns>
|
||||||
</member>
|
</member>
|
||||||
</members>
|
</members>
|
||||||
</doc>
|
</doc>
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Application
|
namespace Ewide.Application
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 代码生成实体测试(EF)
|
/// 代码生成实体测试(EF)
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using SqlSugar;
|
using SqlSugar;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Dilon.Application
|
namespace Ewide.Application
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// SqlSugar实体
|
/// SqlSugar实体
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace Dilon.Application
|
namespace Ewide.Application
|
||||||
{
|
{
|
||||||
public interface ITestService
|
public interface ITestService
|
||||||
{
|
{
|
||||||
@@ -9,7 +9,7 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Dilon.Application
|
namespace Ewide.Application
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 业务服务及集成SqlSugar用法事例
|
/// 业务服务及集成SqlSugar用法事例
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.Extensions.DependencyInjection;
|
|||||||
using SqlSugar;
|
using SqlSugar;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
namespace Dilon.Application
|
namespace Ewide.Application
|
||||||
{
|
{
|
||||||
public class Startup : AppStartup
|
public class Startup : AppStartup
|
||||||
{
|
{
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using Furion.ConfigurableOptions;
|
using Furion.ConfigurableOptions;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 缓存配置
|
/// 缓存配置
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 缓存接口
|
/// 缓存接口
|
||||||
@@ -7,7 +7,7 @@ using System.Threading.Tasks;
|
|||||||
using Furion.DependencyInjection;
|
using Furion.DependencyInjection;
|
||||||
using Microsoft.Extensions.Caching.Memory;
|
using Microsoft.Extensions.Caching.Memory;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 内存缓存
|
/// 内存缓存
|
||||||
@@ -4,7 +4,7 @@ using System;
|
|||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Redis缓存
|
/// Redis缓存
|
||||||
@@ -10,7 +10,7 @@ using System.Drawing.Imaging;
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 点选验证码
|
/// 点选验证码
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using Furion.DependencyInjection;
|
using Furion.DependencyInjection;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 点击验证码输入参数
|
/// 点击验证码输入参数
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using Furion.DependencyInjection;
|
using Furion.DependencyInjection;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 验证码输出参数
|
/// 验证码输出参数
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
public interface IClickWordCaptcha
|
public interface IClickWordCaptcha
|
||||||
{
|
{
|
||||||
@@ -7,7 +7,7 @@ using System.Drawing.Imaging;
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 常规验证码
|
/// 常规验证码
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using Furion.DependencyInjection;
|
using Furion.DependencyInjection;
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 常规验证码输入
|
/// 常规验证码输入
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
public interface IGeneralCaptcha
|
public interface IGeneralCaptcha
|
||||||
{
|
{
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
public class ClaimConst
|
public class ClaimConst
|
||||||
{
|
{
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
public class CommonConst
|
public class CommonConst
|
||||||
{
|
{
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -5,7 +5,7 @@ using System.ComponentModel.DataAnnotations;
|
|||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 自定义实体基类
|
/// 自定义实体基类
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统应用表
|
/// 系统应用表
|
||||||
@@ -22,14 +22,14 @@ namespace Dilon.Core
|
|||||||
[Comment("编码")]
|
[Comment("编码")]
|
||||||
public string Code { get; set; }
|
public string Code { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 图标
|
/// 图标
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Comment("图标")]
|
[Comment("图标")]
|
||||||
public string Icon { get; set; }
|
public string Icon { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 图标颜色
|
/// 图标颜色
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Comment("图标颜色")]
|
[Comment("图标颜色")]
|
||||||
public string Color { get; set; }
|
public string Color { get; set; }
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 代码生成表
|
/// 代码生成表
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 代码生成字段配置表
|
/// 代码生成字段配置表
|
||||||
@@ -5,7 +5,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 参数配置表
|
/// 参数配置表
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 字典值表
|
/// 字典值表
|
||||||
@@ -5,7 +5,7 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 字典类型表
|
/// 字典类型表
|
||||||
@@ -5,7 +5,7 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 员工表
|
/// 员工表
|
||||||
@@ -5,7 +5,7 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 员工附属机构职位表
|
/// 员工附属机构职位表
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 员工职位表
|
/// 员工职位表
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 文件信息表
|
/// 文件信息表
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统操作/审计日志表
|
/// 系统操作/审计日志表
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 操作日志表
|
/// 操作日志表
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 访问日志表
|
/// 访问日志表
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 菜单表
|
/// 菜单表
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 通知公告表
|
/// 通知公告表
|
||||||
@@ -45,7 +45,7 @@ namespace Dilon.Core
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// 发布机构Id
|
/// 发布机构Id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Comment("发布机构Id")]
|
[Comment("发布机构Id")]
|
||||||
[Column("PublicOrgId", TypeName = "varchar(36)")]
|
[Column("PublicOrgId", TypeName = "varchar(36)")]
|
||||||
public string PublicOrgId { get; set; }
|
public string PublicOrgId { get; set; }
|
||||||
|
|
||||||
@@ -4,7 +4,7 @@ using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|||||||
using System;
|
using System;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 通知公告用户表
|
/// 通知公告用户表
|
||||||
@@ -23,7 +23,7 @@ namespace Dilon.Core
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// 用户Id
|
/// 用户Id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Comment("用户Id")]
|
[Comment("用户Id")]
|
||||||
[Column("UserId", TypeName = "varchar(36)")]
|
[Column("UserId", TypeName = "varchar(36)")]
|
||||||
public string UserId { get; set; }
|
public string UserId { get; set; }
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Oauth登录用户表
|
/// Oauth登录用户表
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 组织机构表
|
/// 组织机构表
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 职位表
|
/// 职位表
|
||||||
@@ -5,7 +5,7 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 角色表
|
/// 角色表
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 角色数据范围表
|
/// 角色数据范围表
|
||||||
@@ -14,7 +14,7 @@ namespace Dilon.Core
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// 角色Id
|
/// 角色Id
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Comment("角色Id")]
|
[Comment("角色Id")]
|
||||||
[Column("SysRoleId", TypeName = "varchar(36)")]
|
[Column("SysRoleId", TypeName = "varchar(36)")]
|
||||||
public string SysRoleId { get; set; }
|
public string SysRoleId { get; set; }
|
||||||
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 角色菜单表
|
/// 角色菜单表
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 租户表
|
/// 租户表
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 定时任务
|
/// 定时任务
|
||||||
@@ -6,7 +6,7 @@ using System.Collections.Generic;
|
|||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 用户表
|
/// 用户表
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 用户数据范围表
|
/// 用户数据范围表
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 用户角色表
|
/// 用户角色表
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 账号类型
|
/// 账号类型
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 公共状态
|
/// 公共状态
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
public enum DataScopeType
|
public enum DataScopeType
|
||||||
{
|
{
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using Furion.FriendlyException;
|
using Furion.FriendlyException;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统错误码
|
/// 系统错误码
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 文件存储位置
|
/// 文件存储位置
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 性别
|
/// 性别
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 日志操作类型
|
/// 日志操作类型
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统菜单类型
|
/// 系统菜单类型
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统菜单类型
|
/// 系统菜单类型
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 菜单权重
|
/// 菜单权重
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 通知公告状态
|
/// 通知公告状态
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 通知公告用户状态
|
/// 通知公告用户状态
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 查询类型的枚举
|
/// 查询类型的枚举
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 菜单激活类型
|
/// 菜单激活类型
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 字典扩展
|
/// 字典扩展
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 通用输入扩展参数(带权限)
|
/// 通用输入扩展参数(带权限)
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 小诺分页列表结果
|
/// 小诺分页列表结果
|
||||||
@@ -9,7 +9,7 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 规范化RESTful风格返回值
|
/// 规范化RESTful风格返回值
|
||||||
@@ -4,7 +4,7 @@ using Microsoft.AspNetCore.Mvc.Filters;
|
|||||||
using Serilog;
|
using Serilog;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 全局异常处理
|
/// 全局异常处理
|
||||||
@@ -9,7 +9,7 @@ using System.Security.Claims;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using UAParser;
|
using UAParser;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 请求日志拦截
|
/// 请求日志拦截
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
public interface IUserManager
|
public interface IUserManager
|
||||||
{
|
{
|
||||||
@@ -4,7 +4,7 @@ using Furion.FriendlyException;
|
|||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 用户管理
|
/// 用户管理
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Dilon.Core.OAuth
|
namespace Ewide.Core.OAuth
|
||||||
{
|
{
|
||||||
public interface IWechatOAuth
|
public interface IWechatOAuth
|
||||||
{
|
{
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using Microsoft.Extensions.Configuration;
|
using Microsoft.Extensions.Configuration;
|
||||||
|
|
||||||
namespace Dilon.Core.OAuth
|
namespace Ewide.Core.OAuth
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// OAuth配置---此结构方便拓展
|
/// OAuth配置---此结构方便拓展
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
namespace Dilon.Core.OAuth
|
namespace Ewide.Core.OAuth
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// AccessToken参数
|
/// AccessToken参数
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
namespace Dilon.Core.OAuth
|
namespace Ewide.Core.OAuth
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 微信用户参数
|
/// 微信用户参数
|
||||||
@@ -5,7 +5,7 @@ using Microsoft.Extensions.Configuration;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Dilon.Core.OAuth
|
namespace Ewide.Core.OAuth
|
||||||
{
|
{
|
||||||
public class WechatOAuth : IWechatOAuth, ISingleton
|
public class WechatOAuth : IWechatOAuth, ISingleton
|
||||||
{
|
{
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统应用表种子数据
|
/// 系统应用表种子数据
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统参数配置表种子数据
|
/// 系统参数配置表种子数据
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统字典值种子数据
|
/// 系统字典值种子数据
|
||||||
@@ -116,8 +116,8 @@ namespace Dilon.Core
|
|||||||
new SysDictData{Id="cc64be62-3213-4442-a98a-c508bc35104b", TypeId="b924e0c1-3f23-4e37-9f27-90e945381304", Value="minio", Code="3", Sort=100, Remark="minio", Status=0 },
|
new SysDictData{Id="cc64be62-3213-4442-a98a-c508bc35104b", TypeId="b924e0c1-3f23-4e37-9f27-90e945381304", Value="minio", Code="3", Sort=100, Remark="minio", Status=0 },
|
||||||
new SysDictData{Id="cdc4a9ee-7436-4807-87cd-4350a72745b0", TypeId="b924e0c1-3f23-4e37-9f27-90e945381304", Value="本地", Code="4", Sort=100, Remark="本地", Status=0 },
|
new SysDictData{Id="cdc4a9ee-7436-4807-87cd-4350a72745b0", TypeId="b924e0c1-3f23-4e37-9f27-90e945381304", Value="本地", Code="4", Sort=100, Remark="本地", Status=0 },
|
||||||
new SysDictData{Id="76e885e8-1b40-45b6-bb0f-5519c6839df2", TypeId="0f1b8660-d932-4a53-a681-a38bebae91e0", Value="运行", Code="1", Sort=100, Remark="运行", Status=0 },
|
new SysDictData{Id="76e885e8-1b40-45b6-bb0f-5519c6839df2", TypeId="0f1b8660-d932-4a53-a681-a38bebae91e0", Value="运行", Code="1", Sort=100, Remark="运行", Status=0 },
|
||||||
new SysDictData{Id="6e3591ec-2902-4bf3-b5a2-7ebc94ebc08f", TypeId="0f1b8660-d932-4a53-a681-a38bebae91e0", Value="停止", Code="2", Sort=100, Remark="停止", Status=0 },
|
new SysDictData{Id="6e3591ec-2902-4bf3-b5a2-7ebc94ebc08f", TypeId="0f1b8660-d932-4a53-a681-a38bebae91e0", Value="停止", Code="2", Sort=100, Remark="停止", Status=0 },
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统字典类型种子数据
|
/// 系统字典类型种子数据
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统员工职位表种子数据
|
/// 系统员工职位表种子数据
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统员工表种子数据
|
/// 系统员工表种子数据
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统菜单表种子数据
|
/// 系统菜单表种子数据
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统机构表种子数据
|
/// 系统机构表种子数据
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统职位表种子数据
|
/// 系统职位表种子数据
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统角色表种子数据
|
/// 系统角色表种子数据
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
public class SysTenantSeedData : IEntitySeedData<SysTenant, MultiTenantDbContextLocator>
|
public class SysTenantSeedData : IEntitySeedData<SysTenant, MultiTenantDbContextLocator>
|
||||||
{
|
{
|
||||||
@@ -4,7 +4,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统任务调度表种子数据
|
/// 系统任务调度表种子数据
|
||||||
@@ -3,7 +3,7 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Dilon.Core
|
namespace Ewide.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统用户表种子数据
|
/// 系统用户表种子数据
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
|
||||||
namespace Dilon.Core.Service
|
namespace Ewide.Core.Service
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统应用参数
|
/// 系统应用参数
|
||||||
@@ -17,13 +17,13 @@ namespace Dilon.Core.Service
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual string Code { get; set; }
|
public virtual string Code { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 图标
|
/// 图标
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual string Icon { get; set; }
|
public virtual string Icon { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 图标颜色
|
/// 图标颜色
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual string Color { get; set; }
|
public virtual string Color { get; set; }
|
||||||
|
|
||||||
@@ -56,15 +56,15 @@ namespace Dilon.Core.Service
|
|||||||
/// 编码
|
/// 编码
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Required(ErrorMessage = "应用编码不能为空")]
|
[Required(ErrorMessage = "应用编码不能为空")]
|
||||||
public override string Code { get; set; }
|
public override string Code { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 图标
|
/// 图标
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public override string Icon { get; set; }
|
public override string Icon { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 图标颜色
|
/// 图标颜色
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[RegularExpression("^#[0-9a-fA-F]{6}|#[0-9a-fA-F]{3}$", ErrorMessage = "颜色格式不正确")]
|
[RegularExpression("^#[0-9a-fA-F]{6}|#[0-9a-fA-F]{3}$", ErrorMessage = "颜色格式不正确")]
|
||||||
public override string Color { get; set; }
|
public override string Color { get; set; }
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace Dilon.Core.Service
|
namespace Ewide.Core.Service
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统应用参数
|
/// 系统应用参数
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Dilon.Core.Service
|
namespace Ewide.Core.Service
|
||||||
{
|
{
|
||||||
public interface ISysAppService
|
public interface ISysAppService
|
||||||
{
|
{
|
||||||
@@ -10,7 +10,7 @@ using System;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Dilon.Core.Service
|
namespace Ewide.Core.Service
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 系统应用服务
|
/// 系统应用服务
|
||||||
@@ -16,7 +16,7 @@ using System.Linq;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using UAParser;
|
using UAParser;
|
||||||
|
|
||||||
namespace Dilon.Core.Service
|
namespace Ewide.Core.Service
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 登录授权相关服务
|
/// 登录授权相关服务
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user