点餐机商品支持套餐点餐

This commit is contained in:
谭凯凯
2024-12-03 17:44:52 +08:00
committed by Tankaikai
parent 0c5421bdc1
commit a4963408ab
2 changed files with 9 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
package com.chaozhanggui.system.cashierservice.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.chaozhanggui.system.cashierservice.entity.vo.ProductGroupVo;
import lombok.Data;
import org.springframework.data.annotation.Transient;
@@ -88,6 +89,9 @@ public class TbProduct implements Serializable {
private String selectSpec;
@TableField(exist = false)
private String unitName;
@Transient
@TableField(exist = false)
private List<ProductGroupVo> proGroupVo;
}