初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// InsObject Data Structure.
/// </summary>
[Serializable]
public class InsObject : AopObject
{
/// <summary>
/// 标的物的标识id
/// </summary>
[JsonProperty("insured_object_id")]
public string InsuredObjectId { get; set; }
/// <summary>
/// 标的信息;标准json 格式
/// </summary>
[JsonProperty("insured_object_info")]
public string InsuredObjectInfo { get; set; }
/// <summary>
/// 标的类型;0:财产所在地;1:其它;2:车;3:资金债务;4:电商订单
/// </summary>
[JsonProperty("type")]
public long Type { get; set; }
}
}