27 lines
555 B
C#
27 lines
555 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 查询日期
|
|
/// </summary>
|
|
public string? DateFrom { get; set; }
|
|
|
|
/// <summary>
|
|
/// 查询日期
|
|
/// </summary>
|
|
public string? DateTo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工号
|
|
/// </summary>
|
|
public List<int>? Eids { get; set; }
|
|
}
|
|
}
|