NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantExpandIsvDeviceC...

81 lines
2.7 KiB
C#
Raw Permalink 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>
/// AntMerchantExpandIsvDeviceCreateModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandIsvDeviceCreateModel : AopObject
{
/// <summary>
/// 机具使用的业务场景目前只支持团餐CATERING_DEVICE
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 渠道商下的服务商pid例如云纵名下服务商
/// </summary>
[XmlElement("channel_isv_pid")]
public string ChannelIsvPid { get; set; }
/// <summary>
/// 机具物流配送信息
/// </summary>
[XmlElement("delivery_info")]
public DeliveryInfo DeliveryInfo { get; set; }
/// <summary>
/// 申请的机具模板列表
/// </summary>
[XmlArray("device_list")]
[XmlArrayItem("device_apply_template")]
public List<DeviceApplyTemplate> DeviceList { get; set; }
/// <summary>
/// 申请人联系方式须是7到12位电话号码
/// </summary>
[XmlElement("operator_contact")]
public string OperatorContact { get; set; }
/// <summary>
/// 申请人名称,至少需要一个汉字
/// </summary>
[XmlElement("operator_name")]
public string OperatorName { get; set; }
/// <summary>
/// 商户PID
/// </summary>
[XmlElement("pid")]
public string Pid { get; set; }
/// <summary>
/// 申请原因描述
/// </summary>
[XmlElement("reason")]
public string Reason { get; set; }
/// <summary>
/// 门店ID从成功创建门店的通知里获取
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 申请用途详细说明,比如学校名称
/// </summary>
[XmlElement("usage_detail")]
public string UsageDetail { get; set; }
/// <summary>
/// 机具申请用途,团餐场景取值如下 PRIMARY_SCHOOL小学 JUNIOR_HIGH_SCHOOL初中 SENIOR_HIGH_SCHOOL高中 SECONDARY_VOCATIONAL_SCHOOL中职 VOCATIONAL_TECHNICAL_COLLEGE职业技术学院 UNIVERSITY大学 COMPANY企业 INDUSTRIAL_PARK园区 GOVERNMENT政府机关 HOSPITAL医院 FOOD_COURT美食广场 OTHER其它
/// </summary>
[XmlElement("usage_type")]
public string UsageType { get; set; }
}
}