初始提交
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// InsClaimReportProgress Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class InsClaimReportProgress : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 案件更新内容
|
||||
/// </summary>
|
||||
[JsonProperty("progress_update_content")]
|
||||
public string ProgressUpdateContent { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 案件更新进度时间
|
||||
/// </summary>
|
||||
[JsonProperty("progress_update_time")]
|
||||
public string ProgressUpdateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 进度状态
|
||||
/// </summary>
|
||||
[JsonProperty("status")]
|
||||
public string Status { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user