NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCraftsmanDataWorkBatc...

45 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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