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

@@ -31,6 +31,26 @@ public sealed record StoreFeeDto
/// </summary>
public decimal DeliveryFee { get; init; }
/// <summary>
/// 餐具费是否启用。
/// </summary>
public bool CutleryFeeEnabled { get; init; }
/// <summary>
/// 餐具费金额。
/// </summary>
public decimal CutleryFeeAmount { get; init; }
/// <summary>
/// 加急费是否启用。
/// </summary>
public bool RushFeeEnabled { get; init; }
/// <summary>
/// 加急费金额。
/// </summary>
public decimal RushFeeAmount { get; init; }
/// <summary>
/// 打包费模式。
/// </summary>