NewGaoKaoApi/PaymentSDK/AliPay/Domain/SimpleOperatorModel.cs

25 lines
663 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>
/// SimpleOperatorModel Data Structure.
/// </summary>
[Serializable]
public class SimpleOperatorModel : AopObject
{
/// <summary>
/// 操作员id
/// </summary>
[XmlElement("operator_id")]
public string OperatorId { get; set; }
/// <summary>
/// 操作员类型,只区分收银员和非收银员 收银员为“RESTRICTED_CASHIER”非收银员为“STANDARD_NORMAL”
/// </summary>
[XmlElement("operator_type")]
public string OperatorType { get; set; }
}
}