Files
zszq-trs/YLErpDAL/Model/ClientChangeKafkaRequest.cs
T

33 lines
821 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Model
{
/// <summary>
/// 客户信息变更通知bond_oms
/// </summary>
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; }
}
}