feat(product-items): 新增订阅等级字段

This commit is contained in:
2026-02-12 19:39:39 +08:00
parent d62c39996b
commit 134469536b
4 changed files with 10 additions and 2 deletions

View File

@@ -50,4 +50,6 @@ public class KeyboardProductItemsPageReqVO extends PageParam {
@Schema(description = "订阅时长的具体天数") @Schema(description = "订阅时长的具体天数")
private Integer durationDays; private Integer durationDays;
@Schema(description = "订阅等级")
private Integer level;
} }

View File

@@ -65,4 +65,6 @@ public class KeyboardProductItemsRespVO {
@ExcelProperty("订阅时长的具体天数") @ExcelProperty("订阅时长的具体天数")
private Integer durationDays; private Integer durationDays;
@Schema(description = "订阅等级")
private Integer level;
} }

View File

@@ -57,4 +57,6 @@ public class KeyboardProductItemsSaveReqVO {
@NotNull(message = "订阅时长的具体天数不能为空") @NotNull(message = "订阅时长的具体天数不能为空")
private Integer durationDays; private Integer durationDays;
@Schema(description = "订阅等级")
private Integer level;
} }

View File

@@ -77,6 +77,8 @@ public class KeyboardProductItemsDO{
* 订阅时长的具体天数 * 订阅时长的具体天数
*/ */
private Integer durationDays; private Integer durationDays;
/**
* 订阅等级
*/
private Integer level;
} }