using LearningOfficer.OA.Common.Request; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LearningOfficer.OA.Common.Dtos.Points { public class GetPointsAdminListReq : PageRequest { public string? Account { get; set; } public string? RealName { get; set; } public string? Phone { get; set; } } }