38 lines
1003 B
C#
38 lines
1003 B
C#
using Nirvana.Common.ApiBase;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using YBDevice.Entity.ViewModel;
|
|
|
|
namespace YBDevice.NApi.Application.ChildBody
|
|
{
|
|
/// <summary>
|
|
/// 儿童中医体质管理
|
|
/// </summary>
|
|
public interface IChildBodyService
|
|
{
|
|
/// <summary>
|
|
/// 问答列表
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
Task<ResultInfo> GetListAsync(ChildBodyListC2SDto input);
|
|
|
|
/// <summary>
|
|
/// 结果计算
|
|
/// </summary>
|
|
/// <param name="data"></param>
|
|
/// <returns></returns>
|
|
Task<ResultInfo> GetResultInfoAsync(ChildBodySumitC2SDto data);
|
|
|
|
/// <summary>
|
|
/// 获取已经计算的结果
|
|
/// </summary>
|
|
/// <param name="input"></param>
|
|
/// <returns></returns>
|
|
Task<ResultInfo> GetInfoAsync(ChildBodyInfoC2SDto input);
|
|
}
|
|
}
|