【功能优化】小程序端商城优惠券模板添加描述字段

This commit is contained in:
卢越 2024-08-27 10:38:53 +08:00
parent 4868ef795c
commit 841ad5875c
2 changed files with 3 additions and 1 deletions

View File

@ -67,4 +67,7 @@ public class AppCouponTemplateRespVO {
@Schema(description = "是否可以领取", requiredMode = Schema.RequiredMode.REQUIRED, example = "true") @Schema(description = "是否可以领取", requiredMode = Schema.RequiredMode.REQUIRED, example = "true")
private Boolean canTake; private Boolean canTake;
@Schema(description = "优惠券描述", example = "限时优惠!使用优惠券即可享受全场商品 8 折优惠,快来抢购吧!") // 单位仅在 discountType PERCENT 使用
private String description;
} }

View File

@ -163,7 +163,6 @@ public class CouponTemplateDO extends BaseDO {
// TODO 芋艿领取开始时间领取结束时间 // TODO 芋艿领取开始时间领取结束时间
// TODO 芋艿要不要加描述
@Schema(description = "优惠券描述", example = "限时优惠!使用优惠券即可享受全场商品 8 折优惠,快来抢购吧!") // 单位仅在 discountType PERCENT 使用 @Schema(description = "优惠券描述", example = "限时优惠!使用优惠券即可享受全场商品 8 折优惠,快来抢购吧!") // 单位仅在 discountType PERCENT 使用
private String description; private String description;
} }