31 lines
731 B
C#
31 lines
731 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiMerchantOperatorRoleCreateModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiMerchantOperatorRoleCreateModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 操作员ID
|
|
/// </summary>
|
|
[XmlElement("auth_code")]
|
|
public string AuthCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 角色ID
|
|
/// </summary>
|
|
[XmlElement("role_id")]
|
|
public string RoleId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 角色名称,修改时必填
|
|
/// </summary>
|
|
[XmlElement("role_name")]
|
|
public string RoleName { get; set; }
|
|
}
|
|
}
|