Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KoubeiContentCommentDataBatchqueryModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

42 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// KoubeiContentCommentDataBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiContentCommentDataBatchqueryModel : AopObject
{
/// <summary>
/// 口碑评价id如果传入评价id则会忽略其他参数。 口碑评价id、口碑门店id、口碑手艺人id不能同时为空
/// </summary>
[JsonProperty("comment_id")]
public string CommentId { get; set; }
/// <summary>
/// 口碑手艺人id可通过 koubei.craftsman.data.provider.batchquery 批量查询手艺人信息接口查询。口碑评价id、口碑门店id、口碑手艺人id不能同时为空
/// </summary>
[JsonProperty("craftsman_id")]
public string CraftsmanId { get; set; }
/// <summary>
/// 前次查询的最后一条评价id用于做分页查询的游标。查询时需要指定从哪一条评价开始往后取如果上一次该值传空则从第一页从头取。
/// </summary>
[JsonProperty("last_comment_id")]
public string LastCommentId { get; set; }
/// <summary>
/// 每页的条数最大20条不传会报错
/// </summary>
[JsonProperty("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 口碑门店id如果传入口碑门店id则会忽略手艺人id。口碑评价id、口碑门店id、口碑手艺人id不能同时为空
/// </summary>
[JsonProperty("shop_id")]
public string ShopId { get; set; }
}
}