using GFramework.Core.Abstractions.Architectures; using GFramework.Core.Abstractions.Lifecycle; using GFramework.Core.Abstractions.Rule; namespace GFramework.Core.Abstractions.Model; /// /// 模型接口,定义了模型的基本行为和功能 /// public interface IModel : IContextAware, IArchitecturePhaseListener, IInitializable;