fix(system): 为租户套餐响应VO添加字段Swagger注解并补充days属性

This commit is contained in:
2025-12-05 20:37:22 +08:00
parent aa3171d1ab
commit 4dffbb4e11

View File

@@ -17,7 +17,12 @@ public class TenantPackageSimpleRespVO {
@NotNull(message = "套餐名不能为空")
private String name;
@Schema(description = "套餐类型", example = "1")
private Integer packageType;
@Schema(description = "套餐价格", example = "30")
private Integer price;
@Schema(description = "套餐有效期天数", example = "30")
private Integer days;
}