NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringDishDictionar...

43 lines
1.5 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;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiCateringDishDictionaryQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringDishDictionaryQueryModel : AopObject
{
/// <summary>
/// 业务字典类型. 定义如下: catetory 分类 ;unit 单位;spec 规格virtual_category 虚拟类目。
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 字典的数据id
/// </summary>
[XmlElement("dictionary_id")]
public string DictionaryId { get; set; }
/// <summary>
/// 字典的扩展json根据不同的biz_type,设置商家的自定义字典表key以及value。如果字典类型为catetory, key为cateSortcateTypelevel,parentCatetoryIdlevel传数字cateType为dish或cook ;如果字典类型为spec, key为specSort.。注意:如果是字符串拼接的方式,转移符\要替换为\\\ 。
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 商户的支付宝user_id. 商户授权后,isv能获得
/// </summary>
[XmlElement("merchant_id")]
public string MerchantId { get; set; }
/// <summary>
/// open 启动 stop 停用
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}