namespace Admin.NET.Plugin.AiDOP.MaterialWarehouse.InventoryPosting.Receipt; /// /// C2 业务事务完成锚(Phase 7C)。由外层工作单元在 **C6/C5/C7 之后、Commit 之前**写入 /// ,与业务写同一事务提交。 /// 语义:本锚存在 ⇔ 该 (tenant,domain,FBILLNO) 的业务事务已完整提交(闭合 commit→MarkPosted 崩溃窗口)。 /// public sealed class IqcCompletionMarker { public long TenantId { get; set; } public string DomainCode { get; set; } public string FbillNo { get; set; } public long PostingId { get; set; } public long? TransactionGroupId { get; set; } /// FullReceipt / MrbChoose。 public string RouteKind { get; set; } }