Files
ww-jst/wmsjst/JSMachine.WMS.Domain/IRepository/IAggregateRoot.cs
T

11 lines
255 B
C#
Raw Normal View History

2026-09-02 16:31:50 +08:00
namespace JSMachine.WMS.Domain.IRepository
{
/// <summary>
/// 领域聚合根标记接口,用于约束可由通用仓储持久化的实体。
/// </summary>
public interface IAggregateRoot
{
Guid Id { get; set; }
}
}