using System; using System.Threading.Tasks; using YBDevice.Entity; namespace YBDevice.CommonService.LevelInfo { /// /// 获取等级标准信息 /// public interface ILevelService { /// /// 标准 /// /// 性别,1-男,2-女 /// 月龄 /// 值 /// 1-bmi,2-身高,3-体重,4-头围 /// Task LevelAsync(GenderType sex, decimal month, decimal value, int type); /// /// 标准 /// /// 性别,1-男,2-女 /// 出生年龄 /// 值 /// 1-bmi,2-身高,3-体重,4-头围 /// Task LevelAsync(GenderType sex, DateTime? brithday, decimal value, int type); /// /// 标准 /// /// 性别,1-男,2-女 /// 出生年龄 /// 值 /// 1-bmi,2-身高,3-体重,4-头围 /// Task LevelAsync(GenderType sex, DateTime brithday, decimal value, int type); } }