40 lines
913 B
C#
40 lines
913 B
C#
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Response
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AlipayOfflineProviderStaffUpdateResponse.
|
||
|
|
/// </summary>
|
||
|
|
public class AlipayOfflineProviderStaffUpdateResponse : AopResponse
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 同步失败错误原因信息
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("error_msg")]
|
||
|
|
public string ErrorMsg { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 同步操作完成后的结果
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("operate_result")]
|
||
|
|
public string OperateResult { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 同步员工的操作类型
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("operate_type")]
|
||
|
|
public string OperateType { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 员工pid
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("pid")]
|
||
|
|
public string Pid { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 服务商员工staff_id
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("staff_id")]
|
||
|
|
public string StaffId { get; set; }
|
||
|
|
}
|
||
|
|
}
|