Commit 8e72bc4d by renyizhao

条件乘数

parent f3ae131f
......@@ -80,6 +80,9 @@ public class AppModelPricingVO {
@Schema(description = "分档列表")
private List<TierVO> tiers;
@Schema(description = "条件乘数列表")
private List<ConditionMultiplierVO> conditionMultipliers;
/**
* 分档信息 VO
*/
......@@ -96,4 +99,16 @@ public class AppModelPricingVO {
private String conditionDesc;
}
/**
* 条件乘数 VO
*/
@Data
@Schema(description = "条件乘数")
public static class ConditionMultiplierVO {
@Schema(description = "条件描述(用户可读的文字)")
private String description;
@Schema(description = "倍率")
private BigDecimal multiplier;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment