You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
804 B
27 lines
804 B
2 years ago
|
using Microsoft.AspNetCore.Mvc;
|
||
|
using Znyc.Recruitment.Admin.AspNetCore.Controllers;
|
||
|
using Znyc.Recruitment.Admin.Security.Dtos;
|
||
|
using Znyc.Recruitment.Admin.Security.Entitys;
|
||
|
using Znyc.Recruitment.Admin.Security.IServices;
|
||
|
|
||
|
namespace Znyc.Recruitment.Admin.WebApi.Controllers
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 云币服务
|
||
|
/// </summary>
|
||
|
[ApiController]
|
||
|
[Route("api/Security/[controller]")]
|
||
|
public class
|
||
|
CurrencyController : AreaApiController<CurrencyEntity, CurrencyOutputDto, CurrencyInput, ICurrencyService, long>
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 构造函数
|
||
|
/// </summary>
|
||
|
/// <param name="_service"></param>
|
||
|
public CurrencyController(ICurrencyService _service) : base(_service)
|
||
|
{
|
||
|
_service = _service;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|