mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-02-17 21:56:26 +08:00
32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
|
{
|
|
/// <summary>
|
|
/// <para>表示 [POST] /cgi-bin/checkin/getcheckin_daydata 接口的请求。</para>
|
|
/// </summary>
|
|
public class CgibinCheckinGetCheckinDayDataRequest : WechatWorkRequest
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置指定开始时间戳。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("starttime")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("starttime")]
|
|
public long StartTimestamp { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置指定结束时间戳。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("endtime")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("endtime")]
|
|
public long EndTimestamp { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置指定成员账号列表。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("useridlist")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("useridlist")]
|
|
public IList<string> UserIdList { get; set; } = new List<string>();
|
|
}
|
|
}
|