@ -25,4 +25,6 @@ public class SysRecipesDailyDishes {
|
||||
private String type;
|
||||
|
||||
private Integer isMain;
|
||||
|
||||
private String remark;
|
||||
}
|
||||
|
@ -70,4 +70,6 @@ public interface SysDishesMapper
|
||||
public int deleteIngredientByIds(Long[] ids);
|
||||
|
||||
public int bashInsertDishesIngredent(List<SysDishesIngredient> sysDishesIngredients);
|
||||
|
||||
String getDishesMenuTypeById(Long id);
|
||||
}
|
@ -62,4 +62,6 @@ public interface ISysDishesService
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteSysDishesById(Long id);
|
||||
|
||||
public String getDishesMenuTypeById(Long id);
|
||||
}
|
@ -124,4 +124,9 @@ public class SysDishesServiceImpl implements ISysDishesService {
|
||||
sysDishesMapper.deleteIngredientById(id);
|
||||
return sysDishesMapper.deleteSysDishesById(id);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getDishesMenuTypeById(Long id) {
|
||||
return sysDishesMapper.getDishesMenuTypeById(id);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user