NewGaoKaoApi/PaymentSDK/AliPay/Domain/OperatorContactVO.cs

25 lines
729 B
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;
namespace Aop.Api.Domain
{
/// <summary>
/// OperatorContactVO Data Structure.
/// </summary>
[Serializable]
public class OperatorContactVO : AopObject
{
/// <summary>
/// 联系方式类型取值参考OperatorContactTypeEnum 范围如下: 1=手机 2=电话 3=Email 8=钉钉
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
/// <summary>
/// 联系方式值类型由type决定。 若type=1则value填手机号码 若type=3则value填Email地址 以此类推
/// </summary>
[XmlElement("value")]
public string Value { get; set; }
}
}