using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.MorkBF.Model { public class BF_Food { /// /// 菜品名称 /// public string FoodName { get; set; } /// /// 菜品ID /// public string FoodID { get; set; } } public class BF_PotAction { /// /// 步骤 /// public int FryTime { get; set; } /// /// 时间 /// public int During { get; set; } /// /// 动作 /// public string Actions { get; set; } /// /// 调料 /// public List SeasoningLists { get; set; } /// /// 菜品 /// public List MaterialLists { get; set; } } }