using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using YB.DeviceStand.Domain; namespace YB.DeviceStand.Application.Level { /// /// 计算等级信息 /// public interface ILevelService { /// /// 计算等级标准 /// /// /// Task LevelAsync(LevelS2SDto data); } }