忽略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>
/// ProdIPRelationVO Data Structure.
/// </summary>
[Serializable]
public class ProdIPRelationVO : AopObject
{
/// <summary>
/// 参与者别名
/// </summary>
[JsonProperty("ip_alias_name")]
public string IpAliasName { get; set; }
/// <summary>
/// 参与者所属平台
/// </summary>
[JsonProperty("ip_belong_platform")]
public string IpBelongPlatform { get; set; }
/// <summary>
/// 参与者编码
/// </summary>
[JsonProperty("ip_code")]
public string IpCode { get; set; }
/// <summary>
/// 参与者名称
/// </summary>
[JsonProperty("ip_name")]
public string IpName { get; set; }
/// <summary>
/// 参与者子类型
/// </summary>
[JsonProperty("ip_sub_type")]
public string IpSubType { get; set; }
/// <summary>
/// 参与者类型
/// </summary>
[JsonProperty("ip_type")]
public string IpType { get; set; }
/// <summary>
/// 产品编码
/// </summary>
[JsonProperty("prod_code")]
public string ProdCode { get; set; }
/// <summary>
/// 产品版本
/// </summary>
[JsonProperty("prod_version")]
public string ProdVersion { get; set; }
/// <summary>
/// 参与者平台Id
/// </summary>
[JsonProperty("role_id")]
public string RoleId { get; set; }
}
}