using Nirvana.Common.ApiBase;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using YBDevice.Entity;
namespace YBDevice.NApi
{
///
/// 儿童模式相关处理
///
public interface IChildService
{
///
/// 获取儿童信息
///
///
/// 设备类型
/// 小程序appid
///
Task GetInfoAsync(int familyid,int devtype, string appid);
///
/// 获取成长曲线
///
/// 家庭成员ID
///
Task GetGrowthCurveAsync(ChildGrowthQueryModel model);
///
/// 获取身高/体重成长测评报告,与标准身高进行对比
///
///
/// 设备类型
///
Task GetHWListAsync(int familyid, int devtype);
///
/// 计算遗传身高和成年身高
///
///
///
Task PredictHeightAsync(ChildPredictHeightModel model);
///
/// 获取儿童增量信息
///
///
/// 设备类型
/// 小程序appid
///
Task GetYearHeightInfoAsync(int familyid,int devtype,string appid);
}
}