23 lines
515 B
C#
23 lines
515 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 计算等级信息
|
|
/// </summary>
|
|
public interface ILevelService
|
|
{
|
|
/// <summary>
|
|
/// 计算等级标准
|
|
/// </summary>
|
|
/// <param name="data"></param>
|
|
/// <returns></returns>
|
|
Task<LevelInfoS2SDto> LevelAsync(LevelS2SDto data);
|
|
}
|
|
}
|