using Volo.Abp.Identity; namespace KonSoft.Admin.Entities; /// /// 家政服务工人实体 /// public class HouseholdWorker : IdentityUser { /// /// 接单数 /// public int OrderCount { get; set; } /// /// 职业 /// public required string Profession { get; set; } /// /// 能力范围 /// public required string ScopeOfCompetence { get; set; } }