feat: 套餐增加推荐标识与标签
This commit is contained in:
@@ -84,6 +84,16 @@ public sealed record CreateTenantPackageCommand : IRequest<TenantPackageDto>
|
||||
/// </summary>
|
||||
public TenantPackagePublishStatus? PublishStatus { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否推荐展示(运营推荐标识)。
|
||||
/// </summary>
|
||||
public bool IsRecommended { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 套餐标签(用于展示与对比页)。
|
||||
/// </summary>
|
||||
public string[] Tags { get; init; } = [];
|
||||
|
||||
/// <summary>
|
||||
/// 展示排序,数值越小越靠前。
|
||||
/// </summary>
|
||||
|
||||
@@ -89,6 +89,16 @@ public sealed record UpdateTenantPackageCommand : IRequest<TenantPackageDto?>
|
||||
/// </summary>
|
||||
public TenantPackagePublishStatus? PublishStatus { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否推荐展示(运营推荐标识)。
|
||||
/// </summary>
|
||||
public bool IsRecommended { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// 套餐标签(用于展示与对比页)。
|
||||
/// </summary>
|
||||
public string[] Tags { get; init; } = [];
|
||||
|
||||
/// <summary>
|
||||
/// 展示排序,数值越小越靠前。
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user