Files
qhmes/yy-admin-master/YY.Admin.Services/Service/Jeecg/JeecgSyncState.cs

17 lines
513 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System.Text.Json.Serialization;
namespace YY.Admin.Services.Service.Jeecg
{
/// <summary>
/// Jeecg 同步本地状态(工控机断网续传水位)
/// </summary>
public class JeecgSyncState
{
/// <summary>
/// 同步水位UTC标准列表作 updateTime_beginSCADA 作 updatedAfter与接口文档游标一致
/// </summary>
[JsonPropertyName("lastUserListSyncUtc")]
public DateTime? LastUserListSyncUtc { get; set; }
}
}