using Admin.Core.IService; using Admin.Core.Model; using System.Collections.Generic; using System.Threading.Tasks; namespace Admin.Core.IService { /// /// Ixl_recipeServices /// public interface Ixl_recipeServices :IBaseServices { /// /// 新增配方信息 /// /// /// Task xlInsertRecipe(xl_recipe recipe); /// /// 更新配方信息 /// /// /// Task xlUpdateRecipe(xl_recipe recipe); /// /// 获取配方列表 /// /// Task> xlGetAllRecipes(); /// /// 如果有记录就更新,没有记录就新增 /// /// /// Task xlUpdateOrAdd(xl_recipe recipe); } }