using System.Collections.Generic;
using System.Threading.Tasks;
using GxPress.Entity;
using GxPress.Repository.Interface;
using GxPress.Request.AppVersion;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
namespace GxPress.Api.AdminControllers
{
///
/// APP版本管理
///
[Route("api/admin/app-version")]
[ApiController]
[Authorize]
public class AdminAppVersionController : ControllerBase
{
private readonly ILogger _logger;
private readonly IAppVersionRepository _appVersionRepository;
public AdminAppVersionController(ILogger logger, IAppVersionRepository appVersionRepository)
{
_logger = logger;
_appVersionRepository = appVersionRepository;
}
///
/// 添加
///
/// 参数
///
[HttpPut("add")]
public async Task InAppVersion([FromBody] AppVersionInRequest request)
{
var appVersion = new AppVersion { VersionType = request.VersionType, VersionNumber = request.VersionNumber, Describe = request.Describe, QrCodeUrl = request.QrCodeUrl };
return await _appVersionRepository.InsertAsync(appVersion) > 0;
}
///
/// 详情
///
///
///
[HttpGet("{id}")]
public async Task Get(int id)
{
return await _appVersionRepository.GetAsync(id);
}
///
/// 修改
///
///
///
///
[HttpPut("{id}")]
public async Task Update(int id, [FromBody] AppVersion request)
{
request.Id = id;
return await _appVersionRepository.UpdateAsync(request);
}
///
/// 查询
///
///
[HttpPost("list")]
public async Task> GetAppVersionAll()
{
return await _appVersionRepository.GetAppVersionAsync();
}
///
/// 删除
///
///
///
[HttpDelete("{id}")]
[AllowAnonymous]
public async Task Delete(int id)
{
return await _appVersionRepository.DeleteAsync(id);
}
}
}