using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiMerchantOperatorCreateModel Data Structure. /// [Serializable] public class KoubeiMerchantOperatorCreateModel : AopObject { /// /// 授权码 /// [XmlElement("auth_code")] public string AuthCode { get; set; } /// /// 部门ID /// [XmlElement("department_id")] public string DepartmentId { get; set; } /// /// 折让限额单位 /// [XmlElement("discount_limit_unit")] public string DiscountLimitUnit { get; set; } /// /// 折让限额值 /// [XmlElement("discount_limit_value")] public string DiscountLimitValue { get; set; } /// /// 免单限额单位 /// [XmlElement("free_limit_unit")] public string FreeLimitUnit { get; set; } /// /// 免单限额 /// [XmlElement("free_limit_value")] public string FreeLimitValue { get; set; } /// /// 性别 /// [XmlElement("gender")] public string Gender { get; set; } /// /// 操作员绑定的部门类型 5-部门,6-门店 /// [XmlElement("job_type")] public string JobType { get; set; } /// /// 登录名 /// [XmlElement("login_id")] public string LoginId { get; set; } /// /// 手机号 /// [XmlElement("mobile")] public string Mobile { get; set; } /// /// 操作员名字 /// [XmlElement("operator_name")] public string OperatorName { get; set; } /// /// 角色ID, 示例值角色为店长 /// [XmlElement("role_id")] public string RoleId { get; set; } } }