忽略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,48 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// InsMktCouponConfigDTO Data Structure.
/// </summary>
[Serializable]
public class InsMktCouponConfigDTO : AopObject
{
/// <summary>
/// 权益配置Id
/// </summary>
[JsonProperty("coupon_conf_id")]
public string CouponConfId { get; set; }
/// <summary>
/// 权益类型
/// </summary>
[JsonProperty("coupon_type")]
public string CouponType { get; set; }
/// <summary>
/// 200元优惠券
/// </summary>
[JsonProperty("coupon_value")]
public string CouponValue { get; set; }
/// <summary>
/// 核销结束时间
/// </summary>
[JsonProperty("use_end_time")]
public string UseEndTime { get; set; }
/// <summary>
/// 核销使用规则
/// </summary>
[JsonProperty("use_rule")]
public string UseRule { get; set; }
/// <summary>
/// 核销开始时间
/// </summary>
[JsonProperty("use_start_time")]
public string UseStartTime { get; set; }
}
}