using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SKMC.Api.Recipe.Model { /// /// 速度分组 /// public class RecipeSpeedGroup { public long Id { get; set; } public long RecipeId { get; set; } public string Name { get; set; } public int CurrentUsed { get; set; } } }