循环菜谱详情
This commit is contained in:
parent
5347588130
commit
3d1291a5f4
|
|
@ -82,16 +82,22 @@ public class CookRecipeDishesVO extends BaseEntity {
|
|||
|
||||
@ApiModelProperty("菜品类型")
|
||||
private Integer mealType;
|
||||
|
||||
@ApiModelProperty("成本价")
|
||||
private Integer materialCost;
|
||||
@ApiModelProperty("类别名称")
|
||||
private String typeName;
|
||||
|
||||
@ApiModelProperty("类别id")
|
||||
private Long typeId;
|
||||
|
||||
@ApiModelProperty("类别名称")
|
||||
private String dishesTypeName;
|
||||
|
||||
@ApiModelProperty("食堂名称")
|
||||
private String canteenName;
|
||||
|
||||
@ApiModelProperty("销售方式(1按份,2称重)")
|
||||
private Integer salesMode;
|
||||
|
||||
@ApiModelProperty("称重单位多少克(默认1kg)")
|
||||
private Integer unitPrice;
|
||||
|
||||
|
|
|
|||
|
|
@ -35,8 +35,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<result property="sizeType" column="size_type"/>
|
||||
<result property="supplyNum" column="supply_num"/>
|
||||
<result property="saleNum" column="sale_num"/>
|
||||
<result property="remanentNum" column="surplus_num"/>
|
||||
<result property="limitNum" column="restrict_num"/>
|
||||
<result property="remanentNum" column="remanent_num"/>
|
||||
<result property="limitNum" column="limit_num"/>
|
||||
<result property="salePrice" column="sale_price"/>
|
||||
<result property="recommendFlag" column="recommend_flag"/>
|
||||
<result property="canteenName" column="canteen_name"/>
|
||||
|
|
@ -45,7 +45,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<result property="mealType" column="meal_type"/>
|
||||
<result property="materialCost" column="material_cost"/>
|
||||
<result property="typeId" column="type_id"/>
|
||||
<result property="typeName" column="type_name"/>
|
||||
<result property="dishesTypeName" column="dishes_type_name"/>
|
||||
</collection>
|
||||
</resultMap>
|
||||
|
||||
|
|
@ -127,7 +127,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
crdd.size_type,
|
||||
crdd.supply_num,
|
||||
crdd.sale_num,
|
||||
crdd.remanent_num,
|
||||
(crdd.supply_num - crdd.sale_num) as remanent_num,
|
||||
crdd.limit_num,
|
||||
crdd.sale_price,
|
||||
crdd.recommend_flag,
|
||||
|
|
|
|||
Loading…
Reference in New Issue