feat: 完成门店管理剩余接口并补齐文档注释
All checks were successful
Build and Deploy TenantApi / build-and-deploy (push) Successful in 46s

This commit is contained in:
2026-02-17 14:54:35 +08:00
parent 3a94348cca
commit 1b185af718
45 changed files with 13333 additions and 91 deletions

View File

@@ -47,4 +47,24 @@ public sealed class StoreFee : MultiTenantEntityBase
/// 免配送费门槛。
/// </summary>
public decimal? FreeDeliveryThreshold { get; set; }
/// <summary>
/// 是否启用餐具费。
/// </summary>
public bool CutleryFeeEnabled { get; set; }
/// <summary>
/// 餐具费金额。
/// </summary>
public decimal CutleryFeeAmount { get; set; }
/// <summary>
/// 是否启用加急费。
/// </summary>
public bool RushFeeEnabled { get; set; }
/// <summary>
/// 加急费金额。
/// </summary>
public decimal RushFeeAmount { get; set; }
}