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