30 lines
665 B
C#
30 lines
665 B
C#
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; }
|
|
}
|
|
} |