17 lines
513 B
C#
17 lines
513 B
C#
using System.Text.Json.Serialization;
|
||
|
||
namespace YY.Admin.Services.Service.Jeecg
|
||
{
|
||
/// <summary>
|
||
/// Jeecg 同步本地状态(工控机断网续传水位)
|
||
/// </summary>
|
||
public class JeecgSyncState
|
||
{
|
||
/// <summary>
|
||
/// 同步水位(UTC):标准列表作 updateTime_begin;SCADA 作 updatedAfter(与接口文档游标一致)
|
||
/// </summary>
|
||
[JsonPropertyName("lastUserListSyncUtc")]
|
||
public DateTime? LastUserListSyncUtc { get; set; }
|
||
}
|
||
}
|