|
@@ -4,27 +4,27 @@ using AutoMapper;
|
|
|
using Datory;
|
|
|
using GxPress.Common.AppOptions;
|
|
|
using GxPress.Common.Tools;
|
|
|
-using GxPress.Repository.Interface.Group;
|
|
|
using GxPress.Result.Web;
|
|
|
using Microsoft.Extensions.Caching.Distributed;
|
|
|
using Microsoft.Extensions.Options;
|
|
|
using System.Transactions;
|
|
|
using Dapper;
|
|
|
+using GxPress.Repository.Interface.Group;
|
|
|
|
|
|
namespace GxPress.Repository.Implement.Group
|
|
|
{
|
|
|
/// <summary>
|
|
|
/// 小组广场
|
|
|
/// </summary>
|
|
|
- public class GroupCategroyRepository : IGroupCategroyRepository
|
|
|
+ public class GroupCategoryRepository : IGroupCategoryRepository
|
|
|
{
|
|
|
- private readonly Repository<Entity.tede2.Group.GroupCategroy> _repository;
|
|
|
+ private readonly Repository<Entity.tede2.Group.GroupCategory> _repository;
|
|
|
private readonly Repository<Entity.tede2.Group.UserGroupCategory> userGroupCategoryRepository;
|
|
|
private readonly IMapper _mapper;
|
|
|
private readonly IDistributedCache _cache;
|
|
|
private readonly string _connectionString;
|
|
|
private readonly string _databaseTypestr;
|
|
|
- public GroupCategroyRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper, IDistributedCache cache)
|
|
|
+ public GroupCategoryRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper, IDistributedCache cache)
|
|
|
{
|
|
|
_databaseTypestr = dbOptionsAccessor.CurrentValue.DatabaseType;
|
|
|
_connectionString = dbOptionsAccessor.CurrentValue.ConnectionString;
|
|
@@ -32,7 +32,7 @@ namespace GxPress.Repository.Implement.Group
|
|
|
var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
|
|
|
_mapper = mapper;
|
|
|
_cache = cache;
|
|
|
- _repository = new Repository<Entity.tede2.Group.GroupCategroy>(database);
|
|
|
+ _repository = new Repository<Entity.tede2.Group.GroupCategory>(database);
|
|
|
userGroupCategoryRepository = new Repository<Entity.tede2.Group.UserGroupCategory>(database);
|
|
|
}
|
|
|
|
|
@@ -43,32 +43,32 @@ namespace GxPress.Repository.Implement.Group
|
|
|
/// <summary>
|
|
|
/// 添加小组广场
|
|
|
/// </summary>
|
|
|
- /// <param name="groupCategroy"></param>
|
|
|
+ /// <param name="GroupCategory"></param>
|
|
|
/// <returns></returns>
|
|
|
- public async Task<int> InsertAsync(Entity.tede2.Group.GroupCategroy groupCategroy)
|
|
|
+ public async Task<int> InsertAsync(Entity.tede2.Group.GroupCategory groupCategory)
|
|
|
{
|
|
|
- groupCategroy.ImageUrls = StringUtils.RemoveDomain(groupCategroy.ImageUrls);
|
|
|
- return await _repository.InsertAsync(groupCategroy);
|
|
|
+ groupCategory.ImageUrls = StringUtils.RemoveDomain(groupCategory.ImageUrls);
|
|
|
+ return await _repository.InsertAsync(groupCategory);
|
|
|
}
|
|
|
|
|
|
|
|
|
- public async Task<bool> UpdateAsync(Entity.tede2.Group.GroupCategroy groupCategroy)
|
|
|
+ public async Task<bool> UpdateAsync(Entity.tede2.Group.GroupCategory groupCategory)
|
|
|
{
|
|
|
- if (groupCategroy.Id > 0)
|
|
|
+ if (groupCategory.Id > 0)
|
|
|
{
|
|
|
- var model = await GetAsync(groupCategroy.Id);
|
|
|
- if (!string.IsNullOrEmpty(groupCategroy.PiazzaName))
|
|
|
- model.PiazzaName = groupCategroy.PiazzaName;
|
|
|
- if (groupCategroy.ParentId > 0)
|
|
|
- model.ParentId = groupCategroy.ParentId;
|
|
|
- if (string.IsNullOrEmpty(groupCategroy.ImageUrls))
|
|
|
- model.ImageUrls = StringUtils.RemoveDomain(groupCategroy.ImageUrls);
|
|
|
- return await _repository.UpdateAsync(groupCategroy);
|
|
|
+ var model = await GetAsync(groupCategory.Id);
|
|
|
+ if (!string.IsNullOrEmpty(groupCategory.PiazzaName))
|
|
|
+ model.PiazzaName = groupCategory.PiazzaName;
|
|
|
+ if (groupCategory.ParentId > 0)
|
|
|
+ model.ParentId = groupCategory.ParentId;
|
|
|
+ if (string.IsNullOrEmpty(groupCategory.ImageUrls))
|
|
|
+ model.ImageUrls = StringUtils.RemoveDomain(groupCategory.ImageUrls);
|
|
|
+ return await _repository.UpdateAsync(groupCategory);
|
|
|
}
|
|
|
return false;
|
|
|
}
|
|
|
|
|
|
- public async Task<Entity.tede2.Group.GroupCategroy> GetAsync(int id)
|
|
|
+ public async Task<Entity.tede2.Group.GroupCategory> GetAsync(int id)
|
|
|
{
|
|
|
return await _repository.GetAsync(id);
|
|
|
}
|
|
@@ -96,23 +96,22 @@ namespace GxPress.Repository.Implement.Group
|
|
|
/// <returns></returns>
|
|
|
public async Task<IEnumerable<GroupCategoryResult>> GetAllAsync(int parentId)
|
|
|
{
|
|
|
- var result = await _repository.GetAllAsync<GroupCategoryResult>(Q.Where(nameof(Entity.tede2.Group.GroupCategroy.ParentId), parentId));
|
|
|
+ var result = await _repository.GetAllAsync<GroupCategoryResult>(Q.Where(nameof(Entity.tede2.Group.GroupCategory.ParentId), parentId));
|
|
|
foreach (var item in result)
|
|
|
{
|
|
|
- item.IsChildren = await _repository.ExistsAsync(Q.Where(nameof(Entity.tede2.Group.GroupCategroy.ParentId), item.Id));
|
|
|
+ item.IsChildren = await _repository.ExistsAsync(Q.Where(nameof(Entity.tede2.Group.GroupCategory.ParentId), item.Id));
|
|
|
item.ImageUrls = StringUtils.AddDomain(item.ImageUrls);
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
|
-
|
|
|
- public async Task<IEnumerable<GroupCategoryResult>> GetUserGroupCategroyResult(int userId)
|
|
|
+ public async Task<IEnumerable<GroupCategoryResult>> GetUsergroupCategoryResult(int userId)
|
|
|
{
|
|
|
string sql = $@"SELECT
|
|
|
a.*
|
|
|
FROM
|
|
|
tede_group_piazza a
|
|
|
INNER JOIN
|
|
|
- tede_user_group_category b ON a.id = b.GroupCategroyId
|
|
|
+ tede_user_group_category b ON a.id = b.GroupCategoryId
|
|
|
WHERE
|
|
|
b.UserId = {userId}
|
|
|
ORDER BY b.CreatedDate";
|
|
@@ -123,9 +122,10 @@ namespace GxPress.Repository.Implement.Group
|
|
|
foreach (var item in result)
|
|
|
{
|
|
|
item.ImageUrls = StringUtils.AddDomainMin(item.ImageUrls);
|
|
|
- item.IsChildren = await _repository.ExistsAsync(Q.Where(nameof(Entity.tede2.Group.GroupCategroy.ParentId), item.Id));
|
|
|
+ item.IsChildren = await _repository.ExistsAsync(Q.Where(nameof(Entity.tede2.Group.GroupCategory.ParentId), item.Id));
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
}
|