Files
GateDge2023_ljy/00.SDK/E_ZKEccTopSdk/Response/EmployeeUpdateResponse.cs
PastSaid 16fbd10312 1
2024-04-29 17:57:07 +08:00

21 lines
442 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Serialization;
namespace E_ZKEccTopSdk.Response
{
/// <summary>
/// 人员更新
/// </summary>
public class EmployeeUpdateResponse :TopResponse
{
/// <summary>
/// 返回结果集
/// </summary>
[XmlElement("result_object")]
public object ResultObject { get; set; }
}
}