完成门店管理后端接口与任务

This commit is contained in:
2026-01-01 07:26:14 +08:00
parent dc9f6136d6
commit fc55003d3d
131 changed files with 15333 additions and 201 deletions

View File

@@ -0,0 +1,17 @@
namespace TakeoutSaaS.Domain.Stores.Enums;
/// <summary>
/// 打包费计算模式。
/// </summary>
public enum PackagingFeeMode
{
/// <summary>
/// 总计模式:固定单笔订单打包费。
/// </summary>
Fixed = 0,
/// <summary>
/// 商品计费模式:按商品累计打包费。
/// </summary>
PerItem = 1
}