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
789 B
27 lines
789 B
using Microsoft.AspNetCore.Mvc;
|
|
using Znyc.Cloudcar.Admin.AspNetCore.Controllers;
|
|
using Znyc.Cloudcar.Admin.Security.Dtos;
|
|
using Znyc.Cloudcar.Admin.Security.Entitys;
|
|
using Znyc.Cloudcar.Admin.Security.IServices;
|
|
|
|
namespace Znyc.Cloudcar.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;
|
|
}
|
|
|
|
}
|
|
}
|