using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YLErp.Model { /// /// 客户信息变更通知bond_oms /// public class ClientChangeKafkaRequest { public int ClientId { get; set; } public string ClientName { get; set; } public string ClientRight { get; set; } public string BusinessUseType { get; set; } public string CustomerManagerId { get; set; } public string Status { get; set; } public bool ForceLoginOut { get; set; } } public class SysUserChangeKafkaRequest { public int Id { get; set; } public int? Status { get; set; } public bool? ForceLoginOut { get; set; } } }