using System.Text.Json.Serialization; using TakeoutSaaS.Shared.Abstractions.Serialization; namespace TakeoutSaaS.Application.App.Stores.Dto; /// /// 费用计算商品项。 /// public sealed record StoreFeeCalculationItemDto { /// /// SKU ID。 /// [JsonConverter(typeof(SnowflakeIdJsonConverter))] public long SkuId { get; init; } /// /// 数量。 /// public int Quantity { get; init; } /// /// 单件打包费。 /// public decimal PackagingFee { get; init; } }