忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

@@ -1,66 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// InsAddressee Data Structure.
/// </summary>
[Serializable]
public class InsAddressee : AopObject
{
/// <summary>
/// 收件人详细地址
/// </summary>
[JsonProperty("address")]
public string Address { get; set; }
/// <summary>
/// 区域编码
/// </summary>
[JsonProperty("address_code")]
public string AddressCode { get; set; }
/// <summary>
/// 联系地址-城区
/// </summary>
[JsonProperty("area")]
public string Area { get; set; }
/// <summary>
/// 联系地址-城市
/// </summary>
[JsonProperty("city")]
public string City { get; set; }
/// <summary>
/// 联系方式(mobile登录号)
/// </summary>
[JsonProperty("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 收件人姓名
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
/// <summary>
/// 联系地址-电话
/// </summary>
[JsonProperty("phone")]
public string Phone { get; set; }
/// <summary>
/// 联系地址-省份
/// </summary>
[JsonProperty("province")]
public string Province { get; set; }
/// <summary>
/// 联系地址-邮编
/// </summary>
[JsonProperty("zip")]
public string Zip { get; set; }
}
}