TaobaoTbkDgGeneralLinkConvertLkShopDTO.cs 389 B

12345678910111213141516171819202122232425
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Defaultability.Domain;
  5. public class TaobaoTbkDgGeneralLinkConvertLkShopDTO
  6. {
  7. /*
  8. 店铺ID
  9. */
  10. private string? shopId;
  11. [JsonPropertyName("shop_id")]
  12. public string? ShopId
  13. {
  14. get => shopId;
  15. set => this.shopId = value;
  16. }
  17. }