Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/InsMktObjectDTO.cs

24 lines
449 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// InsMktObjectDTO Data Structure.
/// </summary>
[Serializable]
public class InsMktObjectDTO : AopObject
{
/// <summary>
/// 活动标的id
/// </summary>
[JsonProperty("obj_id")]
public string ObjId { get; set; }
/// <summary>
/// 标的类型
/// </summary>
[JsonProperty("type")]
public long Type { get; set; }
}
}