using System; using System.Collections.Generic; using System.Text; using Volo.Abp.Domain.Entities; namespace Volo.Abp.TestApp.Domain; public class EntityWithIntPk : AggregateRoot { public string Name { get; set; } public EntityWithIntPk() { } public EntityWithIntPk(string name) { Name = name; } }