feat: add public tenant packages listing and sort order

This commit is contained in:
2025-12-11 23:57:04 +08:00
parent cf9927c078
commit c7df64f2e1
28 changed files with 731 additions and 5 deletions

View File

@@ -67,4 +67,9 @@ public sealed class TenantPackage : AuditableEntityBase
/// 是否仍可售卖。
/// </summary>
public bool IsActive { get; set; } = true;
/// <summary>
/// 展示排序,数值越小越靠前。
/// </summary>
public int SortOrder { get; set; } = 0;
}