24 lines
522 B
C#
24 lines
522 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayEcoEduCampusJobCancelModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayEcoEduCampusJobCancelModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 职位来源方编码
|
|
/// </summary>
|
|
[JsonProperty("source_code")]
|
|
public string SourceCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 职位在合作方的ID
|
|
/// </summary>
|
|
[JsonProperty("source_id")]
|
|
public string SourceId { get; set; }
|
|
}
|
|
} |