Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayInsDataDsbEstimateSyncModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

62 lines
1.7 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayInsDataDsbEstimateSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayInsDataDsbEstimateSyncModel : AopObject
{
/// <summary>
/// 业务类型assessment定损evaluation核损
/// </summary>
[JsonProperty("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 定损/核损详情对象列表
/// </summary>
[JsonProperty("estimate_detail_list")]
public List<InsDataDsbEstimateResultDetail> EstimateDetailList { get; set; }
/// <summary>
/// 保险公司定损单号唯一标识一个定损单的id
/// </summary>
[JsonProperty("estimate_no")]
public string EstimateNo { get; set; }
/// <summary>
/// 车架号
/// </summary>
[JsonProperty("frame_no")]
public string FrameNo { get; set; }
/// <summary>
/// 车牌号
/// </summary>
[JsonProperty("license_no")]
public string LicenseNo { get; set; }
/// <summary>
/// 维修企业属性json字符串格式目前key值有type(企业类型/等级、name企业名称、address地址、code维修企业编码
/// </summary>
[JsonProperty("repair_corp_properties")]
public string RepairCorpProperties { get; set; }
/// <summary>
/// 车损总金额,单位:元
/// </summary>
[JsonProperty("total_damage_amount")]
public string TotalDamageAmount { get; set; }
/// <summary>
/// 残值扣除总金额,单位:元
/// </summary>
[JsonProperty("total_remain_value")]
public string TotalRemainValue { get; set; }
}
}