init
This commit is contained in:
23
DOAN.Service/IService/IHelloService.cs
Normal file
23
DOAN.Service/IService/IHelloService.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using Infrastructure.Model;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using DOAN.Model.Content;
|
||||
using DOAN.Model.System.Dto;
|
||||
|
||||
namespace DOAN.Service.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// Hello接口
|
||||
/// </summary>
|
||||
public interface IHelloService : IBaseService<ArticleCategory>
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="name"></param>
|
||||
/// <returns></returns>
|
||||
string SayHello(string name);
|
||||
ApiResult SayHello2([FromBody] SysUserDto userDto);
|
||||
ApiResult SayHello3();
|
||||
ApiResult SayHelloJson([FromBody] SysUserDto userDto);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user