NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMerchantOperatorModif...

85 lines
2.1 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>
/// KoubeiMerchantOperatorModifyModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMerchantOperatorModifyModel : AopObject
{
/// <summary>
/// 授权码
/// </summary>
[XmlElement("auth_code")]
public string AuthCode { get; set; }
/// <summary>
/// 组织部门ID
/// </summary>
[XmlElement("department_id")]
public string DepartmentId { get; set; }
/// <summary>
/// 折让限额单位
/// </summary>
[XmlElement("discount_limit_unit")]
public string DiscountLimitUnit { get; set; }
/// <summary>
/// 折让限额值
/// </summary>
[XmlElement("discount_limit_value")]
public string DiscountLimitValue { get; set; }
/// <summary>
/// 每天
/// </summary>
[XmlElement("free_limit_unit")]
public string FreeLimitUnit { get; set; }
/// <summary>
/// 免单限额值
/// </summary>
[XmlElement("free_limit_value")]
public string FreeLimitValue { get; set; }
/// <summary>
/// 性别
/// </summary>
[XmlElement("gender")]
public string Gender { get; set; }
/// <summary>
/// 5-非叶子节点6叶子节点
/// </summary>
[XmlElement("job_type")]
public string JobType { get; set; }
/// <summary>
/// 手机号
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 操作员Id
/// </summary>
[XmlElement("operator_id")]
public string OperatorId { get; set; }
/// <summary>
/// 操作员姓名
/// </summary>
[XmlElement("operator_name")]
public string OperatorName { get; set; }
/// <summary>
/// 操作员角色ID
/// </summary>
[XmlElement("role_id")]
public string RoleId { get; set; }
}
}