44 lines
1.5 KiB
C#
44 lines
1.5 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using Newtonsoft.Json;
|
||
|
||
namespace Alipay.AopSdk.Core.Domain
|
||
{
|
||
/// <summary>
|
||
/// KoubeiCraftsmanDataWorkBatchqueryModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class KoubeiCraftsmanDataWorkBatchqueryModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 服务商、服务商员工、商户、商户员工等口碑角色操作时必填,对应为《koubei.member.data.oauth.query》中的auth_code,默认有效期24小时;isv自身角色操作的时候,无需传该参数
|
||
/// </summary>
|
||
[JsonProperty("auth_code")]
|
||
public string AuthCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 口碑手艺人id。是创建手艺人接口koubei.craftsman.data.provider.create返回的craftsman_id,或通过查询手艺人信息接口koubei.craftsman.data.provider查询craftsman_id
|
||
/// </summary>
|
||
[JsonProperty("craftsman_id")]
|
||
public string CraftsmanId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 页码,大于0,最大为int的最大值
|
||
/// </summary>
|
||
[JsonProperty("page_no")]
|
||
public string PageNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 每页的条数,大于0,最大不超过100条
|
||
/// </summary>
|
||
[JsonProperty("page_size")]
|
||
public string PageSize { get; set; }
|
||
|
||
/// <summary>
|
||
/// 手艺人作品id列表,全局唯一,是创建手艺人作品接口koubei.craftsman.data.work.create返回的work_id
|
||
/// </summary>
|
||
[JsonProperty("work_ids")]
|
||
|
||
public List<string> WorkIds { get; set; }
|
||
}
|
||
} |