Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/Points/GetPointsAdminListReq.cs

20 lines
415 B
C#

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; }
}
}