This commit is contained in:
Cauchy
2023-10-25 12:14:38 +08:00
parent f723f86d3e
commit 86027f543c
3 changed files with 29 additions and 1 deletions

View File

@@ -2,6 +2,8 @@ package com.peanut.modules.book.vo.response;
import lombok.Data;
import java.math.BigDecimal;
/**
* @Description: 优惠券 Value Object
* @Author: Cauchy
@@ -9,4 +11,12 @@ import lombok.Data;
*/
@Data
public class CouponResponseVo {
/**
* 优惠券名称
*/
String couponName;
/**
* 优惠券金额
*/
Integer couponId;
}