接口文件
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user