jyy
2021-03-16 51b1242dc2f55276b65f287974e7f86dcab8c74d
zq-erp/src/main/java/com/matrix/system/app/vo/ShoppingGoodsDetailVo.java
@@ -53,6 +53,12 @@
    @ApiModelProperty(value = "赠送金额")
    private BigDecimal giftPrice;
    @ApiModelProperty(value = "固定/任选套餐 Y-任选 N-固定")
    private String isCourse;
    @ApiModelProperty(value = "最大使用次数")
    private Integer maxUseCnt;
    @ApiModelProperty(value = "项目关联产品--配料表、卡项可消费产品")
    List<ShoppingGoodsDetailVo> assembleProj;
@@ -200,4 +206,20 @@
    public void setCardCategory(List<ShoppingGoodsCategory> cardCategory) {
        this.cardCategory = cardCategory;
    }
    public String getIsCourse() {
        return isCourse;
    }
    public void setIsCourse(String isCourse) {
        this.isCourse = isCourse;
    }
    public Integer getMaxUseCnt() {
        return maxUseCnt;
    }
    public void setMaxUseCnt(Integer maxUseCnt) {
        this.maxUseCnt = maxUseCnt;
    }
}