瀏覽代碼

ZY

storemanagement
zhaoy 10 月之前
父節點
當前提交
8d9a80a614
共有 100 個文件被更改,包括 2797 次插入145 次删除
  1. 二進制
     
  2. 二進制
     
  3. 二進制
     
  4. 二進制
     
  5. 二進制
     
  6. 二進制
     
  7. 二進制
     
  8. 二進制
     
  9. 二進制
     
  10. +5
    -5
      BPA.NewKitChen.Manage.Application/Auth/AuthService.cs
  11. +1
    -1
      BPA.NewKitChen.Manage.Application/Auth/Dtos/LoginInput.cs
  12. +1
    -1
      BPA.NewKitChen.Manage.Application/Auth/Dtos/LoginOutInfo.cs
  13. +1
    -1
      BPA.NewKitChen.Manage.Application/Auth/Dtos/LoginOutput.cs
  14. +2
    -2
      BPA.NewKitChen.Manage.Application/Auth/IAuthService.cs
  15. +2
    -6
      BPA.NewKitChen.Manage.Application/BPA.SAAS.Manage.Application.csproj
  16. +2
    -2
      BPA.NewKitChen.Manage.Application/Org/Dtos/Company/CompanyDtoInput.cs
  17. +4
    -4
      BPA.NewKitChen.Manage.Application/Org/Dtos/Company/CompanyDtoPageInput.cs
  18. +42
    -0
      BPA.NewKitChen.Manage.Application/Org/Dtos/Users/UserDtoInput.cs
  19. +1
    -1
      BPA.NewKitChen.Manage.Application/Org/Interface/ICompanyService.cs
  20. +12
    -0
      BPA.NewKitChen.Manage.Application/Org/Interface/IRoleService.cs
  21. +14
    -0
      BPA.NewKitChen.Manage.Application/Org/Interface/IUserService.cs
  22. +13
    -10
      BPA.NewKitChen.Manage.Application/Org/Services/CompanyService.cs
  23. +18
    -0
      BPA.NewKitChen.Manage.Application/Org/Services/RoleService.cs
  24. +34
    -0
      BPA.NewKitChen.Manage.Application/Org/Services/UserService.cs
  25. +5
    -5
      BPA.NewKitChen.Manage.Application/System/DictDataServices.cs
  26. +4
    -4
      BPA.NewKitChen.Manage.Application/System/DictTypeServices.cs
  27. +1
    -1
      BPA.NewKitChen.Manage.Application/System/Dtos/DictDataDto.cs
  28. +2
    -2
      BPA.NewKitChen.Manage.Application/System/Dtos/DictDataQueryDto.cs
  29. +1
    -1
      BPA.NewKitChen.Manage.Application/System/Dtos/DictTypeDto.cs
  30. +2
    -2
      BPA.NewKitChen.Manage.Application/System/Dtos/DictTypeQueryDto.cs
  31. +1
    -1
      BPA.NewKitChen.Manage.Application/System/Dtos/MenuDtoInput.cs
  32. +2
    -2
      BPA.NewKitChen.Manage.Application/System/Dtos/MenuTreeDtoOutput.cs
  33. +1
    -1
      BPA.NewKitChen.Manage.Application/System/Dtos/MenuTreeOutput.cs
  34. +1
    -1
      BPA.NewKitChen.Manage.Application/System/Dtos/MenuTreeSearchDtoInput.cs
  35. +4
    -4
      BPA.NewKitChen.Manage.Application/System/Interface/IDictDataService.cs
  36. +3
    -3
      BPA.NewKitChen.Manage.Application/System/Interface/IDictTypeService.cs
  37. +2
    -2
      BPA.NewKitChen.Manage.Application/System/Interface/IMenuService.cs
  38. +3
    -3
      BPA.NewKitChen.Manage.Application/System/MenuServices.cs
  39. +7
    -7
      BPA.NewKitChen.Manage.Application/System/Services/DictDataService.cs
  40. +7
    -7
      BPA.NewKitChen.Manage.Application/System/Services/DictTypeService.cs
  41. +6
    -6
      BPA.NewKitChen.Manage.Application/System/Services/MenuService.cs
  42. +220
    -0
      BPA.NewKitChen.Manage.Application/obj/BPA.SAAS.Manage.Application.csproj.nuget.dgspec.json
  43. +20
    -0
      BPA.NewKitChen.Manage.Application/obj/BPA.SAAS.Manage.Application.csproj.nuget.g.props
  44. +6
    -0
      BPA.NewKitChen.Manage.Application/obj/BPA.SAAS.Manage.Application.csproj.nuget.g.targets
  45. 二進制
     
  46. +1
    -0
      BPA.NewKitChen.Manage.Application/obj/Debug/net6.0/BPA.KitChen.Manage.Application.csproj.CoreCompileInputs.cache
  47. +5
    -0
      BPA.NewKitChen.Manage.Application/obj/Debug/net6.0/BPA.KitChen.Manage.Application.csproj.FileListAbsolute.txt
  48. +23
    -0
      BPA.NewKitChen.Manage.Application/obj/Debug/net6.0/BPA.SAAS.Manage.Application.AssemblyInfo.cs
  49. +1
    -0
      BPA.NewKitChen.Manage.Application/obj/Debug/net6.0/BPA.SAAS.Manage.Application.AssemblyInfoInputs.cache
  50. +11
    -0
      BPA.NewKitChen.Manage.Application/obj/Debug/net6.0/BPA.SAAS.Manage.Application.GeneratedMSBuildEditorConfig.editorconfig
  51. +8
    -0
      BPA.NewKitChen.Manage.Application/obj/Debug/net6.0/BPA.SAAS.Manage.Application.GlobalUsings.g.cs
  52. 二進制
     
  53. 二進制
     
  54. +22
    -22
      BPA.NewKitChen.Manage.Application/obj/project.assets.json
  55. +2
    -2
      BPA.NewKitChen.Manage.Application/obj/project.nuget.cache
  56. +0
    -0
      BPA.NewKitChen.Manage.Comm/BPA.SAAS.Manage.Comm.csproj
  57. +1
    -1
      BPA.NewKitChen.Manage.Comm/Const/ClaimConst.cs
  58. +30
    -0
      BPA.NewKitChen.Manage.Comm/Enum/AdminEnums.cs
  59. +1
    -1
      BPA.NewKitChen.Manage.Comm/Enum/CommonStatus.cs
  60. +23
    -0
      BPA.NewKitChen.Manage.Comm/bin/Debug/net6.0/BPA.KitChen.Manage.Comm.deps.json
  61. 二進制
     
  62. 二進制
     
  63. +69
    -0
      BPA.NewKitChen.Manage.Comm/obj/BPA.SAAS.Manage.Comm.csproj.nuget.dgspec.json
  64. +16
    -0
      BPA.NewKitChen.Manage.Comm/obj/BPA.SAAS.Manage.Comm.csproj.nuget.g.props
  65. +2
    -0
      BPA.NewKitChen.Manage.Comm/obj/BPA.SAAS.Manage.Comm.csproj.nuget.g.targets
  66. +0
    -0
     
  67. +1
    -0
      BPA.NewKitChen.Manage.Comm/obj/Debug/net6.0/BPA.KitChen.Manage.Comm.csproj.CoreCompileInputs.cache
  68. +12
    -0
      BPA.NewKitChen.Manage.Comm/obj/Debug/net6.0/BPA.KitChen.Manage.Comm.csproj.FileListAbsolute.txt
  69. 二進制
     
  70. 二進制
     
  71. +23
    -0
      BPA.NewKitChen.Manage.Comm/obj/Debug/net6.0/BPA.SAAS.Manage.Comm.AssemblyInfo.cs
  72. +1
    -0
      BPA.NewKitChen.Manage.Comm/obj/Debug/net6.0/BPA.SAAS.Manage.Comm.AssemblyInfoInputs.cache
  73. +11
    -0
      BPA.NewKitChen.Manage.Comm/obj/Debug/net6.0/BPA.SAAS.Manage.Comm.GeneratedMSBuildEditorConfig.editorconfig
  74. +8
    -0
      BPA.NewKitChen.Manage.Comm/obj/Debug/net6.0/BPA.SAAS.Manage.Comm.GlobalUsings.g.cs
  75. 二進制
     
  76. 二進制
     
  77. 二進制
     
  78. 二進制
     
  79. +3
    -3
      BPA.NewKitChen.Manage.Comm/obj/project.assets.json
  80. +2
    -2
      BPA.NewKitChen.Manage.Comm/obj/project.nuget.cache
  81. +1
    -1
      BPA.NewKitChen.Manage.Core/BPA.NewKitChen.Manage.Core.xml
  82. +1
    -1
      BPA.NewKitChen.Manage.Core/BPA.SAAS.Manage.Core.csproj
  83. +1
    -1
      BPA.NewKitChen.Manage.Core/Base/IBaseEntity.cs
  84. +1
    -1
      BPA.NewKitChen.Manage.Core/Base/PageInputBase.cs
  85. +1
    -1
      BPA.NewKitChen.Manage.Core/Base/PageUtil.cs
  86. +1
    -1
      BPA.NewKitChen.Manage.Core/DbContext.cs
  87. +3
    -3
      BPA.NewKitChen.Manage.Core/Org/BPA_Company.cs
  88. +3
    -3
      BPA.NewKitChen.Manage.Core/Org/BPA_Organize.cs
  89. +2
    -2
      BPA.NewKitChen.Manage.Core/Org/BPA_Roles.cs
  90. +2
    -2
      BPA.NewKitChen.Manage.Core/Org/BPA_Users.cs
  91. +3
    -3
      BPA.NewKitChen.Manage.Core/System/BPA_DictData.cs
  92. +3
    -3
      BPA.NewKitChen.Manage.Core/System/BPA_DictType.cs
  93. +2
    -2
      BPA.NewKitChen.Manage.Core/System/BPA_ErrorLog.cs
  94. +2
    -2
      BPA.NewKitChen.Manage.Core/System/BPA_Menu.cs
  95. +2
    -2
      BPA.NewKitChen.Manage.Core/System/BPA_OperateLog.cs
  96. +1
    -1
      BPA.NewKitChen.Manage.Core/System/BPA_RoleMenu.cs
  97. 二進制
     
  98. 二進制
     
  99. +2042
    -0
      BPA.NewKitChen.Manage.Core/bin/Debug/net6.0/BPA.KitChen.Manage.Core.deps.json
  100. 二進制
     

二進制
查看文件


二進制
查看文件


二進制
查看文件


二進制
查看文件


二進制
查看文件


二進制
查看文件


二進制
查看文件


二進制
查看文件


二進制
查看文件


+ 5
- 5
BPA.NewKitChen.Manage.Application/Auth/AuthService.cs 查看文件

@@ -1,7 +1,7 @@
using BPA.NewKitChen.Manage.Application.Auth.Dtos;
using BPA.NewKitChen.Manage.Comm.Const;
using BPA.NewKitChen.Manage.Comm.Enum;
using BPA.NewKitChen.Manage.Core.Org;
using BPA.SAAS.Manage.Application.Auth.Dtos;
using BPA.SAAS.Manage.Comm.Const;
using BPA.SAAS.Manage.Comm.Enum;
using BPA.SAAS.Manage.Core.Org;
using Mapster;
using Newtonsoft.Json;
using System;
@@ -11,7 +11,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.Auth
namespace BPA.SAAS.Manage.Application.Auth
{
public class AuthService : IAuthService, IDynamicApiController
{


+ 1
- 1
BPA.NewKitChen.Manage.Application/Auth/Dtos/LoginInput.cs 查看文件

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.Auth.Dtos
namespace BPA.SAAS.Manage.Application.Auth.Dtos
{
public class LoginInput
{


+ 1
- 1
BPA.NewKitChen.Manage.Application/Auth/Dtos/LoginOutInfo.cs 查看文件

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.Auth.Dtos
namespace BPA.SAAS.Manage.Application.Auth.Dtos
{
public class LoginOutInfo
{


+ 1
- 1
BPA.NewKitChen.Manage.Application/Auth/Dtos/LoginOutput.cs 查看文件

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.Auth.Dtos
namespace BPA.SAAS.Manage.Application.Auth.Dtos
{
public class LoginOutput
{


+ 2
- 2
BPA.NewKitChen.Manage.Application/Auth/IAuthService.cs 查看文件

@@ -1,11 +1,11 @@
using BPA.NewKitChen.Manage.Application.Auth.Dtos;
using BPA.SAAS.Manage.Application.Auth.Dtos;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.Auth
namespace BPA.SAAS.Manage.Application.Auth
{
public interface IAuthService
{


BPA.NewKitChen.Manage.Application/BPA.KitChen.Manage.Application.csproj → BPA.NewKitChen.Manage.Application/BPA.SAAS.Manage.Application.csproj 查看文件

@@ -22,12 +22,8 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\BPA.NewKitChen.Manage.Comm\BPA.NewKitChen.Manage.Comm.csproj" />
<ProjectReference Include="..\BPA.NewKitChen.Manage.Core\BPA.NewKitChen.Manage.Core.csproj" />
</ItemGroup>

<ItemGroup>
<Folder Include="Org\Dtos\" />
<ProjectReference Include="..\BPA.NewKitChen.Manage.Comm\BPA.SAAS.Manage.Comm.csproj" />
<ProjectReference Include="..\BPA.NewKitChen.Manage.Core\BPA.SAAS.Manage.Core.csproj" />
</ItemGroup>

</Project>

BPA.NewKitChen.Manage.Application/Org/Dtos/CompanyDtoInput.cs → BPA.NewKitChen.Manage.Application/Org/Dtos/Company/CompanyDtoInput.cs 查看文件

@@ -1,11 +1,11 @@
using BPA.NewKitChen.Manage.Comm.Enum;
using BPA.SAAS.Manage.Comm.Enum;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.Org.Dtos
namespace BPA.SAAS.Manage.Application.Org.Dtos.Company
{
public class CompanyDtoInput
{

BPA.NewKitChen.Manage.Application/Org/Dtos/CompanyDtoPageInput.cs → BPA.NewKitChen.Manage.Application/Org/Dtos/Company/CompanyDtoPageInput.cs 查看文件

@@ -1,13 +1,13 @@
using BPA.NewKitChen.Manage.Core.Base;
using BPA.SAAS.Manage.Core.Base;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.Org.Dtos
namespace BPA.SAAS.Manage.Application.Org.Dtos.Company
{
public class CompanyDtoPageInput: PageInputBase
public class CompanyDtoPageInput : PageInputBase
{
/// <summary>
/// 企业名称
@@ -22,7 +22,7 @@ namespace BPA.NewKitChen.Manage.Application.Org.Dtos
/// 电子邮箱
/// </summary>
public string Email { get; set; }

}
}

+ 42
- 0
BPA.NewKitChen.Manage.Application/Org/Dtos/Users/UserDtoInput.cs 查看文件

@@ -0,0 +1,42 @@
using BPA.SAAS.Manage.Comm.Enum;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.SAAS.Manage.Application.Org.Dtos.Users
{
public class UserDtoInput
{
public string Id { get; set; }
/// <summary>
/// 用户名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 登录账号
/// </summary>
public string Account { get; set; }
/// <summary>
/// 登录密码
/// </summary>
public string Password { get; set; }
/// <summary>
/// 手机号码
/// </summary>
public string Phone { get; set; }
/// <summary>
/// 管理员类型-超级管理员_1、管理员_2、普通账号_3
/// </summary>
public AdminEnums AdminType { get; set; }
/// <summary>
/// 归属组织
/// </summary>
public string SysOrgId { get; set; }
/// <summary>
/// 加盟商id
/// </summary>
public string GroupId { get; set; }
}
}

+ 1
- 1
BPA.NewKitChen.Manage.Application/Org/Interface/ICompanyService.cs 查看文件

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.Org.Interface
namespace BPA.SAAS.Manage.Application.Org.Interface
{
public interface ICompanyService
{


+ 12
- 0
BPA.NewKitChen.Manage.Application/Org/Interface/IRoleService.cs 查看文件

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.SAAS.Manage.Application.Org.Interface
{
public class IRoleService
{
}
}

+ 14
- 0
BPA.NewKitChen.Manage.Application/Org/Interface/IUserService.cs 查看文件

@@ -0,0 +1,14 @@
using BPA.SAAS.Manage.Application.Org.Dtos.Users;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.SAAS.Manage.Application.Org.Interface
{
public interface IUserService
{
Task<bool> AddUser(UserDtoInput input);
}
}

+ 13
- 10
BPA.NewKitChen.Manage.Application/Org/Services/CompanyService.cs 查看文件

@@ -1,8 +1,9 @@
using BPA.NewKitChen.Manage.Application.Org.Dtos;
using BPA.NewKitChen.Manage.Application.Org.Interface;
using BPA.NewKitChen.Manage.Comm.Enum;
using BPA.NewKitChen.Manage.Core.Base;
using BPA.NewKitChen.Manage.Core.Org;
using BPA.SAAS.Manage.Application.Org.Dtos.Company;
using BPA.SAAS.Manage.Application.Org.Dtos.Users;
using BPA.SAAS.Manage.Application.Org.Interface;
using BPA.SAAS.Manage.Comm.Enum;
using BPA.SAAS.Manage.Core.Base;
using BPA.SAAS.Manage.Core.Org;
using Furion.LinqBuilder;
using System;
using System.Collections.Generic;
@@ -10,14 +11,16 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.Org.Services
namespace BPA.SAAS.Manage.Application.Org.Services
{
public class CompanyService: ICompanyService, ITransient
{
private readonly ISqlSugarClient _db;
public CompanyService(ISqlSugarClient db)
IUserService _UserService;
public CompanyService(ISqlSugarClient db, IUserService userService)
{
_db = db;
_UserService = userService;
}
/// <summary>
/// 查询企业信息
@@ -57,7 +60,7 @@ namespace BPA.NewKitChen.Manage.Application.Org.Services
/// <param name="input"></param>
/// <returns></returns>
[HttpPost("/api/company/add")]
public bool AddCompany(CompanyDtoInput input)
public async Task<bool> AddCompany(CompanyDtoInput input)
{
var company = input.Adapt<BPA_Company>();

@@ -66,11 +69,11 @@ namespace BPA.NewKitChen.Manage.Application.Org.Services
if (Companycheck != null)
throw Oops.Oh($"账号已存在");

var res = _db.Insertable(company).CallEntityMethod(x => x.Create()).ExecuteReturnEntity();
var res =await _db.Insertable(company).ExecuteReturnEntityAsync();

input.Email = input.Email.IsNullOrEmpty() ? input.Phone : input.Email;
//创建企业,管理员用户,管理员角色
bool adduser = _UserService.AddUser(new UserDtoInput
bool adduser =await _UserService.AddUser(new UserDtoInput
{
GroupId = res.Id,
Account = input.Email,


+ 18
- 0
BPA.NewKitChen.Manage.Application/Org/Services/RoleService.cs 查看文件

@@ -0,0 +1,18 @@
using BPA.SAAS.Manage.Application.Org.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.SAAS.Manage.Application.Org.Services
{
public class RoleService: IRoleService, ITransient
{
private readonly ISqlSugarClient _db;
public RoleService(ISqlSugarClient db)
{
_db=db;
}
}
}

+ 34
- 0
BPA.NewKitChen.Manage.Application/Org/Services/UserService.cs 查看文件

@@ -0,0 +1,34 @@
using BPA.SAAS.Manage.Application.Org.Dtos.Users;
using BPA.SAAS.Manage.Application.Org.Interface;
using BPA.SAAS.Manage.Application.Org.Interface;
using BPA.SAAS.Manage.Comm.Const;
using BPA.SAAS.Manage.Core.Org;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.SAAS.Manage.Application.Org.Services
{
public class UserService : IUserService, ITransient
{
private readonly ISqlSugarClient _db;
public UserService(ISqlSugarClient db)
{
_db=db;
}
public async Task<bool> AddUser(UserDtoInput input)
{
var user = input.Adapt<BPA_Users>();
user.Id= Guid.NewGuid().ToString();
user.Password = MD5Encryption.Encrypt("123456").ToLower();
user.CreateAt=DateTime.Now;
user.CreateBy = App.User?.FindFirst(ClaimConst.CLAINM_USERID)?.Value;
var check = _db.Queryable<BPA_Users>().First(t => t.Account == user.Account);
if (check != null)
return false;
return await _db.Insertable(user).ExecuteCommandAsync()> 0;
}
}
}

+ 5
- 5
BPA.NewKitChen.Manage.Application/System/DictDataServices.cs 查看文件

@@ -1,9 +1,9 @@
using BPA.NewKitChen.Manage.Application.System.Dtos;
using BPA.NewKitChen.Manage.Application.System.Interface;
using BPA.NewKitChen.Manage.Core.Base;
using BPA.NewKitChen.Manage.Core.system;
using BPA.SAAS.Manage.Application.System.Dtos;
using BPA.SAAS.Manage.Application.System.Interface;
using BPA.SAAS.Manage.Core.Base;
using BPA.SAAS.Manage.Core.system;

namespace BPA.NewKitChen.Manage.Application
namespace BPA.SAAS.Manage.Application
{
/// <summary>
/// 数据字典服务接口


+ 4
- 4
BPA.NewKitChen.Manage.Application/System/DictTypeServices.cs 查看文件

@@ -1,6 +1,6 @@
using BPA.NewKitChen.Manage.Application.System.Dtos;
using BPA.NewKitChen.Manage.Application.System.Interface;
using BPA.NewKitChen.Manage.Core.Base;
using BPA.SAAS.Manage.Application.System.Dtos;
using BPA.SAAS.Manage.Application.System.Interface;
using BPA.SAAS.Manage.Core.Base;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -8,7 +8,7 @@ using System.Text;
using System.Threading.Tasks;
using System.Xml.Linq;

namespace BPA.NewKitChen.Manage.Application.System
namespace BPA.SAAS.Manage.Application.System
{
[ApiDescriptionSettings("SYS", Tag = "字典类型")]
public class DictTypeServices: IDynamicApiController, ITransient


+ 1
- 1
BPA.NewKitChen.Manage.Application/System/Dtos/DictDataDto.cs 查看文件

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.System.Dtos
namespace BPA.SAAS.Manage.Application.System.Dtos
{
public class DictDataDto
{


+ 2
- 2
BPA.NewKitChen.Manage.Application/System/Dtos/DictDataQueryDto.cs 查看文件

@@ -1,11 +1,11 @@
using BPA.NewKitChen.Manage.Core.Base;
using BPA.SAAS.Manage.Core.Base;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.System.Dtos
namespace BPA.SAAS.Manage.Application.System.Dtos
{
public class DictDataQueryDto:PageInputBase
{


+ 1
- 1
BPA.NewKitChen.Manage.Application/System/Dtos/DictTypeDto.cs 查看文件

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.System.Dtos
namespace BPA.SAAS.Manage.Application.System.Dtos
{
public class DictTypeDto
{


+ 2
- 2
BPA.NewKitChen.Manage.Application/System/Dtos/DictTypeQueryDto.cs 查看文件

@@ -1,11 +1,11 @@
using BPA.NewKitChen.Manage.Core.Base;
using BPA.SAAS.Manage.Core.Base;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.System.Dtos
namespace BPA.SAAS.Manage.Application.System.Dtos
{
public class DictTypeQueryDto: PageInputBase
{


+ 1
- 1
BPA.NewKitChen.Manage.Application/System/Dtos/MenuDtoInput.cs 查看文件

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.System.Dtos
namespace BPA.SAAS.Manage.Application.System.Dtos
{
public class MenuDtoInput
{


+ 2
- 2
BPA.NewKitChen.Manage.Application/System/Dtos/MenuTreeDtoOutput.cs 查看文件

@@ -1,11 +1,11 @@
using BPA.NewKitChen.Manage.Comm.Enum;
using BPA.SAAS.Manage.Comm.Enum;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.System.Dtos
namespace BPA.SAAS.Manage.Application.System.Dtos
{
public class MenuTreeDtoOutput
{


+ 1
- 1
BPA.NewKitChen.Manage.Application/System/Dtos/MenuTreeOutput.cs 查看文件

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.System.Dtos
namespace BPA.SAAS.Manage.Application.System.Dtos
{
public class MenuTreeOutput
{


+ 1
- 1
BPA.NewKitChen.Manage.Application/System/Dtos/MenuTreeSearchDtoInput.cs 查看文件

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.System.Dtos
namespace BPA.SAAS.Manage.Application.System.Dtos
{
public class MenuTreeSearchDtoInput
{


+ 4
- 4
BPA.NewKitChen.Manage.Application/System/Interface/IDictDataService.cs 查看文件

@@ -1,8 +1,8 @@
using BPA.NewKitChen.Manage.Application.System.Dtos;
using BPA.NewKitChen.Manage.Core.Base;
using BPA.NewKitChen.Manage.Core.system;
using BPA.SAAS.Manage.Application.System.Dtos;
using BPA.SAAS.Manage.Core.Base;
using BPA.SAAS.Manage.Core.system;

namespace BPA.NewKitChen.Manage.Application.System.Interface
namespace BPA.SAAS.Manage.Application.System.Interface
{
public interface IDictDataService
{


+ 3
- 3
BPA.NewKitChen.Manage.Application/System/Interface/IDictTypeService.cs 查看文件

@@ -1,12 +1,12 @@
using BPA.NewKitChen.Manage.Application.System.Dtos;
using BPA.NewKitChen.Manage.Core.Base;
using BPA.SAAS.Manage.Application.System.Dtos;
using BPA.SAAS.Manage.Core.Base;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.System.Interface
namespace BPA.SAAS.Manage.Application.System.Interface
{
public interface IDictTypeService
{


+ 2
- 2
BPA.NewKitChen.Manage.Application/System/Interface/IMenuService.cs 查看文件

@@ -1,11 +1,11 @@
using BPA.NewKitChen.Manage.Application.System.Dtos;
using BPA.SAAS.Manage.Application.System.Dtos;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.System.Interface
namespace BPA.SAAS.Manage.Application.System.Interface
{
public interface IMenuService
{


+ 3
- 3
BPA.NewKitChen.Manage.Application/System/MenuServices.cs 查看文件

@@ -1,12 +1,12 @@
using BPA.NewKitChen.Manage.Application.System.Dtos;
using BPA.NewKitChen.Manage.Application.System.Interface;
using BPA.SAAS.Manage.Application.System.Dtos;
using BPA.SAAS.Manage.Application.System.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.System
namespace BPA.SAAS.Manage.Application.System
{
[ApiDescriptionSettings("SYS", Tag = "菜单信息")]
public class MenuServices: IDynamicApiController


+ 7
- 7
BPA.NewKitChen.Manage.Application/System/Services/DictDataService.cs 查看文件

@@ -1,11 +1,11 @@
using BPA.NewKitChen.Manage.Application.System.Dtos;
using BPA.NewKitChen.Manage.Application.System.Interface;
using BPA.NewKitChen.Manage.Comm.Enum;
using BPA.NewKitChen.Manage.Core.Base;
using BPA.NewKitChen.Manage.Core.system;
using BPA.NewKitChen.Manage.Core.System;
using BPA.SAAS.Manage.Application.System.Dtos;
using BPA.SAAS.Manage.Application.System.Interface;
using BPA.SAAS.Manage.Comm.Enum;
using BPA.SAAS.Manage.Core.Base;
using BPA.SAAS.Manage.Core.system;
using BPA.SAAS.Manage.Core.System;

namespace BPA.NewKitChen.Manage.Application
namespace BPA.SAAS.Manage.Application
{
public class DictDataService : IDictDataService, ITransient
{


+ 7
- 7
BPA.NewKitChen.Manage.Application/System/Services/DictTypeService.cs 查看文件

@@ -1,16 +1,16 @@
using BPA.NewKitChen.Manage.Application.System.Dtos;
using BPA.NewKitChen.Manage.Application.System.Interface;
using BPA.NewKitChen.Manage.Comm.Const;
using BPA.NewKitChen.Manage.Comm.Enum;
using BPA.NewKitChen.Manage.Core.Base;
using BPA.NewKitChen.Manage.Core.System;
using BPA.SAAS.Manage.Application.System.Dtos;
using BPA.SAAS.Manage.Application.System.Interface;
using BPA.SAAS.Manage.Comm.Const;
using BPA.SAAS.Manage.Comm.Enum;
using BPA.SAAS.Manage.Core.Base;
using BPA.SAAS.Manage.Core.System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.System.Services
namespace BPA.SAAS.Manage.Application.System.Services
{
public class DictTypeService: IDictTypeService, ITransient
{


+ 6
- 6
BPA.NewKitChen.Manage.Application/System/Services/MenuService.cs 查看文件

@@ -1,8 +1,8 @@
using BPA.NewKitChen.Manage.Application.System.Dtos;
using BPA.NewKitChen.Manage.Application.System.Interface;
using BPA.NewKitChen.Manage.Comm.Const;
using BPA.NewKitChen.Manage.Core.Org;
using BPA.NewKitChen.Manage.Core.System;
using BPA.SAAS.Manage.Application.System.Dtos;
using BPA.SAAS.Manage.Application.System.Interface;
using BPA.SAAS.Manage.Comm.Const;
using BPA.SAAS.Manage.Core.Org;
using BPA.SAAS.Manage.Core.System;
using Furion.LinqBuilder;
using System;
using System.Collections.Generic;
@@ -10,7 +10,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Application.System.Services
namespace BPA.SAAS.Manage.Application.System.Services
{
public class MenuService : IMenuService, ITransient
{


+ 220
- 0
BPA.NewKitChen.Manage.Application/obj/BPA.SAAS.Manage.Application.csproj.nuget.dgspec.json 查看文件

@@ -0,0 +1,220 @@
{
"format": 1,
"restore": {
"D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Application\\BPA.SAAS.Manage.Application.csproj": {}
},
"projects": {
"D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Application\\BPA.SAAS.Manage.Application.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Application\\BPA.SAAS.Manage.Application.csproj",
"projectName": "BPA.SAAS.Manage.Application",
"projectPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Application\\BPA.SAAS.Manage.Application.csproj",
"packagesPath": "C:\\Users\\HBL\\.nuget\\packages\\",
"outputPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Application\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"D:\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\HBL\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"http://111.9.47.105:10243/repository/bpa/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.SAAS.Manage.Comm.csproj": {
"projectPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.SAAS.Manage.Comm.csproj"
},
"D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Core\\BPA.SAAS.Manage.Core.csproj": {
"projectPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Core\\BPA.SAAS.Manage.Core.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.101\\RuntimeIdentifierGraph.json"
}
}
},
"D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.SAAS.Manage.Comm.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.SAAS.Manage.Comm.csproj",
"projectName": "BPA.SAAS.Manage.Comm",
"projectPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.SAAS.Manage.Comm.csproj",
"packagesPath": "C:\\Users\\HBL\\.nuget\\packages\\",
"outputPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"D:\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\HBL\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"http://111.9.47.105:10243/repository/bpa/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.101\\RuntimeIdentifierGraph.json"
}
}
},
"D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Core\\BPA.SAAS.Manage.Core.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Core\\BPA.SAAS.Manage.Core.csproj",
"projectName": "BPA.SAAS.Manage.Core",
"projectPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Core\\BPA.SAAS.Manage.Core.csproj",
"packagesPath": "C:\\Users\\HBL\\.nuget\\packages\\",
"outputPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Core\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"D:\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\HBL\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"http://111.9.47.105:10243/repository/bpa/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.SAAS.Manage.Comm.csproj": {
"projectPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.SAAS.Manage.Comm.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"dependencies": {
"Furion.Extras.Authentication.JwtBearer": {
"target": "Package",
"version": "[4.8.8.5, )"
},
"Furion.Extras.ObjectMapper.Mapster": {
"target": "Package",
"version": "[4.8.8.5, )"
},
"Furion.Pure": {
"target": "Package",
"version": "[4.8.8.5, )"
},
"SqlSugarCore": {
"target": "Package",
"version": "[5.1.4.67, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.101\\RuntimeIdentifierGraph.json"
}
}
}
}
}

+ 20
- 0
BPA.NewKitChen.Manage.Application/obj/BPA.SAAS.Manage.Application.csproj.nuget.g.props 查看文件

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\HBL\.nuget\packages\;D:\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\HBL\.nuget\packages\" />
<SourceRoot Include="D:\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\HBL\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5</PkgMicrosoft_Extensions_ApiDescription_Server>
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Users\HBL\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3</PkgMicrosoft_CodeAnalysis_Analyzers>
</PropertyGroup>
</Project>

+ 6
- 0
BPA.NewKitChen.Manage.Application/obj/BPA.SAAS.Manage.Application.csproj.nuget.g.targets 查看文件

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)system.text.json\6.0.7\buildTransitive\netcoreapp3.1\System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json\6.0.7\buildTransitive\netcoreapp3.1\System.Text.Json.targets')" />
</ImportGroup>
</Project>

二進制
查看文件


+ 1
- 0
BPA.NewKitChen.Manage.Application/obj/Debug/net6.0/BPA.KitChen.Manage.Application.csproj.CoreCompileInputs.cache 查看文件

@@ -0,0 +1 @@
9618a8bd0bdd22b0fa6c241946eeff52497ac8d4

+ 5
- 0
BPA.NewKitChen.Manage.Application/obj/Debug/net6.0/BPA.KitChen.Manage.Application.csproj.FileListAbsolute.txt 查看文件

@@ -0,0 +1,5 @@
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Application\obj\Debug\net6.0\BPA.KitChen.Manage.Application.csproj.AssemblyReference.cache
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Application\obj\Debug\net6.0\BPA.KitChen.Manage.Application.GeneratedMSBuildEditorConfig.editorconfig
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Application\obj\Debug\net6.0\BPA.KitChen.Manage.Application.AssemblyInfoInputs.cache
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Application\obj\Debug\net6.0\BPA.KitChen.Manage.Application.AssemblyInfo.cs
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Application\obj\Debug\net6.0\BPA.KitChen.Manage.Application.csproj.CoreCompileInputs.cache

+ 23
- 0
BPA.NewKitChen.Manage.Application/obj/Debug/net6.0/BPA.SAAS.Manage.Application.AssemblyInfo.cs 查看文件

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.Reflection;

[assembly: System.Reflection.AssemblyCompanyAttribute("BPA.SAAS.Manage.Application")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("BPA.SAAS.Manage.Application")]
[assembly: System.Reflection.AssemblyTitleAttribute("BPA.SAAS.Manage.Application")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

// 由 MSBuild WriteCodeFragment 类生成。


+ 1
- 0
BPA.NewKitChen.Manage.Application/obj/Debug/net6.0/BPA.SAAS.Manage.Application.AssemblyInfoInputs.cache 查看文件

@@ -0,0 +1 @@
1c2a077e4d1d4de1e43718730a4261653443b941

+ 11
- 0
BPA.NewKitChen.Manage.Application/obj/Debug/net6.0/BPA.SAAS.Manage.Application.GeneratedMSBuildEditorConfig.editorconfig 查看文件

@@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = BPA.SAAS.Manage.Application
build_property.ProjectDir = D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Application\

+ 8
- 0
BPA.NewKitChen.Manage.Application/obj/Debug/net6.0/BPA.SAAS.Manage.Application.GlobalUsings.g.cs 查看文件

@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

二進制
查看文件


二進制
查看文件


+ 22
- 22
BPA.NewKitChen.Manage.Application/obj/project.assets.json 查看文件

@@ -1958,31 +1958,31 @@
}
}
},
"BPA.KitChen.Manage.Comm/1.0.0": {
"BPA.SAAS.Manage.Comm/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"compile": {
"bin/placeholder/BPA.KitChen.Manage.Comm.dll": {}
"bin/placeholder/BPA.SAAS.Manage.Comm.dll": {}
},
"runtime": {
"bin/placeholder/BPA.KitChen.Manage.Comm.dll": {}
"bin/placeholder/BPA.SAAS.Manage.Comm.dll": {}
}
},
"BPA.KitChen.Manage.Core/1.0.0": {
"BPA.SAAS.Manage.Core/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"dependencies": {
"BPA.KitChen.Manage.Comm": "1.0.0",
"BPA.SAAS.Manage.Comm": "1.0.0",
"Furion.Extras.Authentication.JwtBearer": "4.8.8.5",
"Furion.Extras.ObjectMapper.Mapster": "4.8.8.5",
"Furion.Pure": "4.8.8.5",
"SqlSugarCore": "5.1.4.67"
},
"compile": {
"bin/placeholder/BPA.KitChen.Manage.Core.dll": {}
"bin/placeholder/BPA.SAAS.Manage.Core.dll": {}
},
"runtime": {
"bin/placeholder/BPA.KitChen.Manage.Core.dll": {}
"bin/placeholder/BPA.SAAS.Manage.Core.dll": {}
}
}
}
@@ -6472,21 +6472,21 @@
"version.txt"
]
},
"BPA.KitChen.Manage.Comm/1.0.0": {
"BPA.SAAS.Manage.Comm/1.0.0": {
"type": "project",
"path": "../BPA.NewKitChen.Manage.Comm/BPA.KitChen.Manage.Comm.csproj",
"msbuildProject": "../BPA.NewKitChen.Manage.Comm/BPA.KitChen.Manage.Comm.csproj"
"path": "../BPA.NewKitChen.Manage.Comm/BPA.SAAS.Manage.Comm.csproj",
"msbuildProject": "../BPA.NewKitChen.Manage.Comm/BPA.SAAS.Manage.Comm.csproj"
},
"BPA.KitChen.Manage.Core/1.0.0": {
"BPA.SAAS.Manage.Core/1.0.0": {
"type": "project",
"path": "../BPA.NewKitChen.Manage.Core/BPA.KitChen.Manage.Core.csproj",
"msbuildProject": "../BPA.NewKitChen.Manage.Core/BPA.KitChen.Manage.Core.csproj"
"path": "../BPA.NewKitChen.Manage.Core/BPA.SAAS.Manage.Core.csproj",
"msbuildProject": "../BPA.NewKitChen.Manage.Core/BPA.SAAS.Manage.Core.csproj"
}
},
"projectFileDependencyGroups": {
"net6.0": [
"BPA.KitChen.Manage.Comm >= 1.0.0",
"BPA.KitChen.Manage.Core >= 1.0.0"
"BPA.SAAS.Manage.Comm >= 1.0.0",
"BPA.SAAS.Manage.Core >= 1.0.0"
]
},
"packageFolders": {
@@ -6496,9 +6496,9 @@
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Application\\BPA.KitChen.Manage.Application.csproj",
"projectName": "BPA.KitChen.Manage.Application",
"projectPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Application\\BPA.KitChen.Manage.Application.csproj",
"projectUniqueName": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Application\\BPA.SAAS.Manage.Application.csproj",
"projectName": "BPA.SAAS.Manage.Application",
"projectPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Application\\BPA.SAAS.Manage.Application.csproj",
"packagesPath": "C:\\Users\\HBL\\.nuget\\packages\\",
"outputPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Application\\obj\\",
"projectStyle": "PackageReference",
@@ -6523,11 +6523,11 @@
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.KitChen.Manage.Comm.csproj": {
"projectPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.KitChen.Manage.Comm.csproj"
"D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.SAAS.Manage.Comm.csproj": {
"projectPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.SAAS.Manage.Comm.csproj"
},
"D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Core\\BPA.KitChen.Manage.Core.csproj": {
"projectPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Core\\BPA.KitChen.Manage.Core.csproj"
"D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Core\\BPA.SAAS.Manage.Core.csproj": {
"projectPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Core\\BPA.SAAS.Manage.Core.csproj"
}
}
}


+ 2
- 2
BPA.NewKitChen.Manage.Application/obj/project.nuget.cache 查看文件

@@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "l8bAFpX9COkzRT3Qh6YK4bBF5eVesDDYVjpCQaTl/Ef+wlUpS/XUfv3WUDxFeMExBZCxD1/eFoV0SbIFjXnzyA==",
"dgSpecHash": "Ze2hsL2SWg51w7rpHBvBt3Xt+E12ZZxaHLu353mcsZuMe1IF5vBAidfc/QYzFgiGC7bWB22FtmzRlp4pAPhVgA==",
"success": true,
"projectFilePath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Application\\BPA.KitChen.Manage.Application.csproj",
"projectFilePath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Application\\BPA.SAAS.Manage.Application.csproj",
"expectedPackageFiles": [
"C:\\Users\\HBL\\.nuget\\packages\\ben.demystifier\\0.4.1\\ben.demystifier.0.4.1.nupkg.sha512",
"C:\\Users\\HBL\\.nuget\\packages\\furion.extras.authentication.jwtbearer\\4.8.8.5\\furion.extras.authentication.jwtbearer.4.8.8.5.nupkg.sha512",


BPA.NewKitChen.Manage.Comm/BPA.KitChen.Manage.Comm.csproj → BPA.NewKitChen.Manage.Comm/BPA.SAAS.Manage.Comm.csproj 查看文件


+ 1
- 1
BPA.NewKitChen.Manage.Comm/Const/ClaimConst.cs 查看文件

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Comm.Const
namespace BPA.SAAS.Manage.Comm.Const
{
public class ClaimConst
{


+ 30
- 0
BPA.NewKitChen.Manage.Comm/Enum/AdminEnums.cs 查看文件

@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.SAAS.Manage.Comm.Enum
{
public enum AdminEnums
{
/// <summary>
/// 超级管理员
/// </summary>
[Description("超级管理员")]
SuperAdmin = 1,

/// <summary>
/// 管理员
/// </summary>
[Description("管理员")]
Admin = 2,

/// <summary>
/// 普通账号
/// </summary>
[Description("普通账号")]
None = 3
}
}

+ 1
- 1
BPA.NewKitChen.Manage.Comm/Enum/CommonStatus.cs 查看文件

@@ -5,7 +5,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Comm.Enum
namespace BPA.SAAS.Manage.Comm.Enum
{
public enum CommonStatus
{


+ 23
- 0
BPA.NewKitChen.Manage.Comm/bin/Debug/net6.0/BPA.KitChen.Manage.Comm.deps.json 查看文件

@@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"BPA.KitChen.Manage.Comm/1.0.0": {
"runtime": {
"BPA.KitChen.Manage.Comm.dll": {}
}
}
}
},
"libraries": {
"BPA.KitChen.Manage.Comm/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

二進制
查看文件


二進制
查看文件


+ 69
- 0
BPA.NewKitChen.Manage.Comm/obj/BPA.SAAS.Manage.Comm.csproj.nuget.dgspec.json 查看文件

@@ -0,0 +1,69 @@
{
"format": 1,
"restore": {
"D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.SAAS.Manage.Comm.csproj": {}
},
"projects": {
"D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.SAAS.Manage.Comm.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.SAAS.Manage.Comm.csproj",
"projectName": "BPA.SAAS.Manage.Comm",
"projectPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.SAAS.Manage.Comm.csproj",
"packagesPath": "C:\\Users\\HBL\\.nuget\\packages\\",
"outputPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"D:\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\HBL\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {},
"http://111.9.47.105:10243/repository/bpa/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.101\\RuntimeIdentifierGraph.json"
}
}
}
}
}

+ 16
- 0
BPA.NewKitChen.Manage.Comm/obj/BPA.SAAS.Manage.Comm.csproj.nuget.g.props 查看文件

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\HBL\.nuget\packages\;D:\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\HBL\.nuget\packages\" />
<SourceRoot Include="D:\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>

+ 2
- 0
BPA.NewKitChen.Manage.Comm/obj/BPA.SAAS.Manage.Comm.csproj.nuget.g.targets 查看文件

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

+ 0
- 0
查看文件


+ 1
- 0
BPA.NewKitChen.Manage.Comm/obj/Debug/net6.0/BPA.KitChen.Manage.Comm.csproj.CoreCompileInputs.cache 查看文件

@@ -0,0 +1 @@
0e525f76e22e84b36677c65da9f6f1ebc79bf2a4

+ 12
- 0
BPA.NewKitChen.Manage.Comm/obj/Debug/net6.0/BPA.KitChen.Manage.Comm.csproj.FileListAbsolute.txt 查看文件

@@ -0,0 +1,12 @@
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Comm\bin\Debug\net6.0\BPA.KitChen.Manage.Comm.deps.json
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Comm\bin\Debug\net6.0\BPA.KitChen.Manage.Comm.dll
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Comm\bin\Debug\net6.0\BPA.KitChen.Manage.Comm.pdb
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Comm\obj\Debug\net6.0\BPA.KitChen.Manage.Comm.csproj.AssemblyReference.cache
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Comm\obj\Debug\net6.0\BPA.KitChen.Manage.Comm.GeneratedMSBuildEditorConfig.editorconfig
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Comm\obj\Debug\net6.0\BPA.KitChen.Manage.Comm.AssemblyInfoInputs.cache
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Comm\obj\Debug\net6.0\BPA.KitChen.Manage.Comm.AssemblyInfo.cs
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Comm\obj\Debug\net6.0\BPA.KitChen.Manage.Comm.csproj.CoreCompileInputs.cache
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Comm\obj\Debug\net6.0\BPA.KitChen.Manage.Comm.dll
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Comm\obj\Debug\net6.0\refint\BPA.KitChen.Manage.Comm.dll
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Comm\obj\Debug\net6.0\BPA.KitChen.Manage.Comm.pdb
D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Comm\obj\Debug\net6.0\ref\BPA.KitChen.Manage.Comm.dll

二進制
查看文件


二進制
查看文件


+ 23
- 0
BPA.NewKitChen.Manage.Comm/obj/Debug/net6.0/BPA.SAAS.Manage.Comm.AssemblyInfo.cs 查看文件

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------

using System;
using System.Reflection;

[assembly: System.Reflection.AssemblyCompanyAttribute("BPA.SAAS.Manage.Comm")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("BPA.SAAS.Manage.Comm")]
[assembly: System.Reflection.AssemblyTitleAttribute("BPA.SAAS.Manage.Comm")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

// 由 MSBuild WriteCodeFragment 类生成。


+ 1
- 0
BPA.NewKitChen.Manage.Comm/obj/Debug/net6.0/BPA.SAAS.Manage.Comm.AssemblyInfoInputs.cache 查看文件

@@ -0,0 +1 @@
62f8d1c772426adcec16c0eb0a8e2c15d35699d3

+ 11
- 0
BPA.NewKitChen.Manage.Comm/obj/Debug/net6.0/BPA.SAAS.Manage.Comm.GeneratedMSBuildEditorConfig.editorconfig 查看文件

@@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net6.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = BPA.SAAS.Manage.Comm
build_property.ProjectDir = D:\BPA\BPA.NewKitChen\BPA.NewKitChen.Manage\BPA.NewKitChen.Manage.Comm\

+ 8
- 0
BPA.NewKitChen.Manage.Comm/obj/Debug/net6.0/BPA.SAAS.Manage.Comm.GlobalUsings.g.cs 查看文件

@@ -0,0 +1,8 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;

二進制
查看文件


二進制
查看文件


二進制
查看文件


二進制
查看文件


+ 3
- 3
BPA.NewKitChen.Manage.Comm/obj/project.assets.json 查看文件

@@ -14,9 +14,9 @@
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.KitChen.Manage.Comm.csproj",
"projectName": "BPA.KitChen.Manage.Comm",
"projectPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.KitChen.Manage.Comm.csproj",
"projectUniqueName": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.SAAS.Manage.Comm.csproj",
"projectName": "BPA.SAAS.Manage.Comm",
"projectPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.SAAS.Manage.Comm.csproj",
"packagesPath": "C:\\Users\\HBL\\.nuget\\packages\\",
"outputPath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\obj\\",
"projectStyle": "PackageReference",


+ 2
- 2
BPA.NewKitChen.Manage.Comm/obj/project.nuget.cache 查看文件

@@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "O/kDxdQ0O27/eaqMAQ3fvkd/m9dWcIApOKPGiWG3RexmU3EymbFAqtnU6pZNBPoqYadNHSSyuZcg+xTfbvhiMQ==",
"dgSpecHash": "AfoAdbVLqDKBmMfVRFeAFkiNJg7K38DiHfa9eg4I4QRaAcMJWXd3+6p7f6QLWQPYXOLxUKGTyxrAEcWRSjYSiA==",
"success": true,
"projectFilePath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.KitChen.Manage.Comm.csproj",
"projectFilePath": "D:\\BPA\\BPA.NewKitChen\\BPA.NewKitChen.Manage\\BPA.NewKitChen.Manage.Comm\\BPA.SAAS.Manage.Comm.csproj",
"expectedPackageFiles": [],
"logs": [
{


+ 1
- 1
BPA.NewKitChen.Manage.Core/BPA.NewKitChen.Manage.Core.xml 查看文件

@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>BPA.NewKitChen.Manage.Core</name>
<name>BPA.KitChen.Manage.Core</name>
</assembly>
<members>
<member name="P:BPA.NewKitChen.Manage.Core.Base.IBaseEntity.Id">


BPA.NewKitChen.Manage.Core/BPA.KitChen.Manage.Core.csproj → BPA.NewKitChen.Manage.Core/BPA.SAAS.Manage.Core.csproj 查看文件

@@ -21,7 +21,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\BPA.NewKitChen.Manage.Comm\BPA.NewKitChen.Manage.Comm.csproj" />
<ProjectReference Include="..\BPA.NewKitChen.Manage.Comm\BPA.SAAS.Manage.Comm.csproj" />
</ItemGroup>

</Project>

+ 1
- 1
BPA.NewKitChen.Manage.Core/Base/IBaseEntity.cs 查看文件

@@ -5,7 +5,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Core.Base
namespace BPA.SAAS.Manage.Core.Base
{
public abstract class IBaseEntity
{


+ 1
- 1
BPA.NewKitChen.Manage.Core/Base/PageInputBase.cs 查看文件

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Core.Base
namespace BPA.SAAS.Manage.Core.Base
{
public class PageInputBase
{


+ 1
- 1
BPA.NewKitChen.Manage.Core/Base/PageUtil.cs 查看文件

@@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Core.Base
namespace BPA.SAAS.Manage.Core.Base
{
/// <summary>
/// 分页实体


+ 1
- 1
BPA.NewKitChen.Manage.Core/DbContext.cs 查看文件

@@ -5,7 +5,7 @@ using SqlSugar;
using System;
using System.Collections.Generic;

namespace BPA.NewKitChen.Manage.Core
namespace BPA.SAAS.Manage.Core
{
/// <summary>
/// 数据库上下文对象


+ 3
- 3
BPA.NewKitChen.Manage.Core/Org/BPA_Company.cs 查看文件

@@ -1,5 +1,5 @@
using BPA.NewKitChen.Manage.Comm.Enum;
using BPA.NewKitChen.Manage.Core.Base;
using BPA.SAAS.Manage.Comm.Enum;
using BPA.SAAS.Manage.Core.Base;
using SqlSugar;
using System;
using System.Collections.Generic;
@@ -7,7 +7,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Core.Org
namespace BPA.SAAS.Manage.Core.Org
{
/// <summary>
/// 加盟商信息


+ 3
- 3
BPA.NewKitChen.Manage.Core/Org/BPA_Organize.cs 查看文件

@@ -1,5 +1,5 @@
using BPA.NewKitChen.Manage.Comm.Enum;
using BPA.NewKitChen.Manage.Core.Base;
using BPA.SAAS.Manage.Comm.Enum;
using BPA.SAAS.Manage.Core.Base;
using SqlSugar;
using System;
using System.Collections.Generic;
@@ -7,7 +7,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Core.Org
namespace BPA.SAAS.Manage.Core.Org
{
/// <summary>
/// 组织机构


+ 2
- 2
BPA.NewKitChen.Manage.Core/Org/BPA_Roles.cs 查看文件

@@ -1,4 +1,4 @@
using BPA.NewKitChen.Manage.Core.Base;
using BPA.SAAS.Manage.Core.Base;
using SqlSugar;
using System;
using System.Collections.Generic;
@@ -6,7 +6,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Core.Org
namespace BPA.SAAS.Manage.Core.Org
{
/// <summary>
/// 角色


+ 2
- 2
BPA.NewKitChen.Manage.Core/Org/BPA_Users.cs 查看文件

@@ -1,4 +1,4 @@
using BPA.NewKitChen.Manage.Core.Base;
using BPA.SAAS.Manage.Core.Base;
using SqlSugar;
using System;
using System.Collections.Generic;
@@ -6,7 +6,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Core.Org
namespace BPA.SAAS.Manage.Core.Org
{
[SugarTable("bpa_users")]
public class BPA_Users: IBaseEntity


+ 3
- 3
BPA.NewKitChen.Manage.Core/System/BPA_DictData.cs 查看文件

@@ -1,5 +1,5 @@
using BPA.NewKitChen.Manage.Comm.Enum;
using BPA.NewKitChen.Manage.Core.Base;
using BPA.SAAS.Manage.Comm.Enum;
using BPA.SAAS.Manage.Core.Base;
using SqlSugar;
using System;
using System.Collections.Generic;
@@ -7,7 +7,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Core.system
namespace BPA.SAAS.Manage.Core.system
{
[SugarTable("bpa_dictdata")]
public class BPA_DictData: IBaseEntity


+ 3
- 3
BPA.NewKitChen.Manage.Core/System/BPA_DictType.cs 查看文件

@@ -1,5 +1,5 @@
using BPA.NewKitChen.Manage.Comm.Enum;
using BPA.NewKitChen.Manage.Core.Base;
using BPA.SAAS.Manage.Comm.Enum;
using BPA.SAAS.Manage.Core.Base;
using SqlSugar;
using System;
using System.Collections.Generic;
@@ -7,7 +7,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Core.System
namespace BPA.SAAS.Manage.Core.System
{
[SugarTable("bpa_dicttype")]
public class BPA_DictType: IBaseEntity


+ 2
- 2
BPA.NewKitChen.Manage.Core/System/BPA_ErrorLog.cs 查看文件

@@ -1,4 +1,4 @@
using BPA.NewKitChen.Manage.Core.Base;
using BPA.SAAS.Manage.Core.Base;
using SqlSugar;
using System;
using System.Collections.Generic;
@@ -6,7 +6,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Core.System
namespace BPA.SAAS.Manage.Core.System
{
[SugarTable("bpa_errorlog")]
public class BPA_ErrorLog: IBaseEntity


+ 2
- 2
BPA.NewKitChen.Manage.Core/System/BPA_Menu.cs 查看文件

@@ -1,4 +1,4 @@
using BPA.NewKitChen.Manage.Core.Base;
using BPA.SAAS.Manage.Core.Base;
using SqlSugar;
using System;
using System.Collections.Generic;
@@ -6,7 +6,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Core.System
namespace BPA.SAAS.Manage.Core.System
{
[SugarTable("bpa_menu")]
public class BPA_Menu: IBaseEntity


+ 2
- 2
BPA.NewKitChen.Manage.Core/System/BPA_OperateLog.cs 查看文件

@@ -1,4 +1,4 @@
using BPA.NewKitChen.Manage.Core.Base;
using BPA.SAAS.Manage.Core.Base;
using SqlSugar;
using System;
using System.Collections.Generic;
@@ -6,7 +6,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Core.System
namespace BPA.SAAS.Manage.Core.System
{
[SugarTable("bpa_operatelog")]
public class BPA_OperateLog: IBaseEntity


+ 1
- 1
BPA.NewKitChen.Manage.Core/System/BPA_RoleMenu.cs 查看文件

@@ -5,7 +5,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace BPA.NewKitChen.Manage.Core.System
namespace BPA.SAAS.Manage.Core.System
{
[SugarTable("bpa_rolemenu")]
public class BPA_RoleMenu


二進制
查看文件


二進制
查看文件


+ 2042
- 0
BPA.NewKitChen.Manage.Core/bin/Debug/net6.0/BPA.KitChen.Manage.Core.deps.json
文件差異過大導致無法顯示
查看文件


二進制
查看文件


部分文件因文件數量過多而無法顯示

Loading…
取消
儲存