using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayOfflineProviderStaffUpdateModel Data Structure. /// [Serializable] public class AlipayOfflineProviderStaffUpdateModel : AopObject { /// /// 支付宝账号 /// [JsonProperty("alipay_no")] public string AlipayNo { get; set; } /// /// 行业类型 /// [JsonProperty("biz_type")] public string BizType { get; set; } /// /// 客户端请求IP /// [JsonProperty("client_ip")] public string ClientIp { get; set; } /// /// 新增员工的备注信息 /// [JsonProperty("description")] public string Description { get; set; } /// /// 要同步员工的邮箱 /// [JsonProperty("email")] public string Email { get; set; } /// /// 登录用户的staff_id /// [JsonProperty("login_staff_id")] public string LoginStaffId { get; set; } /// /// 服务商pid /// [JsonProperty("merchant_id")] public string MerchantId { get; set; } /// /// 服务商id的类型 /// [JsonProperty("merchant_id_type")] public string MerchantIdType { get; set; } /// /// 云纵登录人员pid /// [JsonProperty("ope_pid")] public string OpePid { get; set; } /// /// 同步云纵员工操作类型 /// [JsonProperty("operate_type")] public string OperateType { get; set; } /// /// 流水号参数 /// [JsonProperty("request_id")] public string RequestId { get; set; } /// /// 角色类型 /// [JsonProperty("role_type")] public string RoleType { get; set; } /// /// 修改删除员工的主键id /// [JsonProperty("staff_id")] public string StaffId { get; set; } /// /// 要同步员工的电话号码 /// [JsonProperty("staff_mobile")] public string StaffMobile { get; set; } /// /// 新增员工姓名 /// [JsonProperty("staff_name")] public string StaffName { get; set; } /// /// 员工类型 /// [JsonProperty("staff_type")] public string StaffType { get; set; } } }