using Microsoft.AspNetCore.Mvc;
using System;
using System.Threading.Tasks;
using Znyc.Recruitment.Admin.AspNetCore.Entitys;
using Znyc.Recruitment.Admin.AspNetCore.Mvc;
using Znyc.Recruitment.Admin.Commons.Entitys;
using Znyc.Recruitment.Admin.Commons.Log;
using Znyc.Recruitment.Admin.Security.IServices;
namespace Znyc.Recruitment.Admin.WebApi.Controllers
{
///
/// 省市区地区管理
///
[ApiController]
[Route("api/Security/[controller]")]
public class
RegionController
{
private readonly IRegionService _regionService;
///
/// 构造函数
///
///
public RegionController(IRegionService regionService)
{
_regionService = regionService;
}
///
/// 省市区
///
///
[HttpGet("GetAllRegionList")]
[FunctionAuthorize("")]
public async Task GetAllRegionList()
{
CommonResult result = new CommonResult();
try
{
System.Collections.Generic.List list = await _regionService.GetAllRegionList();
result.Success = true;
result.ErrCode = ErrCode.successCode;
result.ResData = list;
}
catch (Exception ex)
{
Log4NetHelper.Error("获取省市区缓存异常", ex);
result.ErrMsg = ErrCode.err40110;
result.ErrCode = "40110";
}
return result;
}
///
/// 同步地区缓存
///
///
[HttpGet("AsyncRegionCache")]
[FunctionAuthorize("")]
public async Task AsyncRegionCache()
{
CommonResult result = new CommonResult();
try
{
System.Collections.Generic.List list = await _regionService.AsyncRegionCache();
result.Success = true;
result.ErrCode = ErrCode.successCode;
result.ResData = list;
}
catch (Exception ex)
{
Log4NetHelper.Error("同步地区缓存异常", ex);
result.ErrMsg = ErrCode.err40110;
result.ErrCode = "40110";
}
return result;
}
}
}