using System; using System.Collections.Generic; using Volo.Abp.Application.Dtos; namespace KonSoft.Admin.Dtos; public class WorkerDto : EntityDto { public string Name { get; set; } public string Phone { get; set; } public List SkillCategoryIds { get; set; } = new(); // 擅长服务类型 }