using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Core.Domain.Dto.Zxd
{
public class SearchExternalUserTotalDto
{
///
/// 查询日期
///
public string? DateFrom { get; set; }
///
/// 查询日期
///
public string? DateTo { get; set; }
///
/// 工号
///
public List? Eids { get; set; }
}
}