mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
feat(work): 随官方更新打卡相关接口模型
This commit is contained in:
parent
71b7ff3892
commit
f1867eb8ce
@ -56,7 +56,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("sch_checkin_time")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("sch_checkin_time")]
|
||||
public long StandardCheckinTimestamp { get; set; }
|
||||
public long ScheduledCheckinTimestamp { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置打卡地点名称。
|
||||
|
@ -97,7 +97,14 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("work_days")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("work_days")]
|
||||
public int StandardDays { get; set; }
|
||||
public int WorkDays { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置休息天数。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("rest_days")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("rest_days")]
|
||||
public int RestDays { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置实际工作时长(单位:秒)。
|
||||
|
@ -954,6 +954,13 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
||||
[Newtonsoft.Json.JsonProperty("open_sp_checkin")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("open_sp_checkin")]
|
||||
public bool? IsOpenApprovalCheckin { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置打卡交替方式。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("checkin_method_type")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("checkin_method_type")]
|
||||
public int? CheckinMethodType { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -522,6 +522,13 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.Models
|
||||
[Newtonsoft.Json.JsonProperty("open_sp_checkin")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("open_sp_checkin")]
|
||||
public bool? IsOpenApprovalCheckin { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 获取或设置打卡交替方式。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("checkin_method_type")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("checkin_method_type")]
|
||||
public int? CheckinMethodType { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user