30 lines
701 B
C#
30 lines
701 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayEcoEduJzApplyresultSyncModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayEcoEduJzApplyresultSyncModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 报名编号(通过调用报名信息同步接口返回)
|
|
/// </summary>
|
|
[JsonProperty("apply_third_id")]
|
|
public string ApplyThirdId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[JsonProperty("audit_remark")]
|
|
public string AuditRemark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 报名结果状态
|
|
/// </summary>
|
|
[JsonProperty("listing_status")]
|
|
public string ListingStatus { get; set; }
|
|
}
|
|
} |