NewGaoKaoApi/PaymentSDK/AliPay/Domain/OperatorInfoModel.cs

93 lines
2.1 KiB
C#

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// OperatorInfoModel Data Structure.
/// </summary>
[Serializable]
public class OperatorInfoModel : AopObject
{
/// <summary>
/// customerId
/// </summary>
[XmlElement("cid")]
public string Cid { get; set; }
/// <summary>
/// 邮件
/// </summary>
[XmlElement("email")]
public string Email { get; set; }
/// <summary>
/// 部门ID
/// </summary>
[XmlElement("job_id")]
public string JobId { get; set; }
/// <summary>
/// 部门树
/// </summary>
[XmlElement("job_tree")]
public string JobTree { get; set; }
/// <summary>
/// 手机号
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 操作员姓名
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 操作员别名
/// </summary>
[XmlElement("nick_name")]
public string NickName { get; set; }
/// <summary>
/// 操作员ID
/// </summary>
[XmlElement("operator_id")]
public string OperatorId { get; set; }
/// <summary>
/// 操作员类型
/// </summary>
[XmlElement("operator_type")]
public string OperatorType { get; set; }
/// <summary>
/// 角色ID
/// </summary>
[XmlElement("role_id")]
public string RoleId { get; set; }
/// <summary>
/// 角色名字
/// </summary>
[XmlElement("role_name")]
public string RoleName { get; set; }
/// <summary>
/// 门店列表
/// </summary>
[XmlArray("shop_ids")]
[XmlArrayItem("string")]
public List<string> ShopIds { get; set; }
/// <summary>
/// T
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}