NewGaoKaoApi/PaymentSDK/AliPay/Domain/BizUnitInfo.cs

31 lines
737 B
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>
/// BizUnitInfo Data Structure.
/// </summary>
[Serializable]
public class BizUnitInfo : AopObject
{
/// <summary>
/// 经营单元id如店铺id
/// </summary>
[XmlElement("identity")]
public string Identity { get; set; }
/// <summary>
/// 经营单元名称,如店铺名称
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 经营单元类型,如口碑门店/集团统一门店等
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}