|
@@ -6,11 +6,12 @@ using GxPress.Common.AppOptions;
|
|
|
using GxPress.Common.Tools;
|
|
|
using GxPress.Entity.Navigations;
|
|
|
using GxPress.Repository.Interface.Navigation;
|
|
|
+using GxPress.Request.Navigation;
|
|
|
using Microsoft.Extensions.Options;
|
|
|
|
|
|
namespace GxPress.Repository.Implement.Navigation
|
|
|
{
|
|
|
- public class MiddleLableRepository :IMiddleLableRepository
|
|
|
+ public class MiddleLableRepository : IMiddleLableRepository
|
|
|
{
|
|
|
private readonly Repository<Entity.Navigations.MiddleLable> _repository;
|
|
|
private readonly IMapper _mapper;
|
|
@@ -46,9 +47,22 @@ namespace GxPress.Repository.Implement.Navigation
|
|
|
return await _repository.InsertAsync(note);
|
|
|
}
|
|
|
|
|
|
- public async Task<bool> UpdateAsync(Entity.Navigations.MiddleLable note)
|
|
|
+ public async Task<bool> UpdateAsync(MiddleLableUpRequest request)
|
|
|
{
|
|
|
- return await _repository.UpdateAsync(note);
|
|
|
+ if (request.Id > 0)
|
|
|
+ {
|
|
|
+ var model = await GetAsync(request.Id);
|
|
|
+ if (request.IsDisable > 0)
|
|
|
+ model.IsDisable = request.IsDisable == 1;
|
|
|
+ if (!string.IsNullOrEmpty(request.LabelId))
|
|
|
+ model.LabelId = request.LabelId;
|
|
|
+ if (!string.IsNullOrEmpty(request.Name))
|
|
|
+ model.Name = request.Name;
|
|
|
+ if (request.Sort > 0)
|
|
|
+ model.Sort = request.Sort;
|
|
|
+ return await _repository.UpdateAsync(model);
|
|
|
+ }
|
|
|
+ return false;
|
|
|
}
|
|
|
public async Task<bool> UpdateAsync(SqlKata.Query query)
|
|
|
{
|