菜品加大类、小类

This commit is contained in:
xiezhijun
2021-03-10 17:36:10 +08:00
parent 761321036f
commit 989889f4cf
5 changed files with 105 additions and 4 deletions

View File

@ -29,6 +29,19 @@ public class SysDishes {
@Excel(name = "菜品名称")
private String name;
/** 大类 */
@Excel(name = "大类")
private Integer bigClass;
@Excel(name = "大类")
private String bigClassName;
/** 小类 */
private Integer smallClass;
@Excel(name = "小类")
private String smallClassName;
/**
* 菜品类型
*/
@ -72,7 +85,8 @@ public class SysDishes {
*/
private String remark;
private List<SysDishesIngredient> igdList;
private Integer[] dishClass;
}