Files
zszq-trs/YLErpDAL/Model/ClientChangeKafkaRequest.cs
T
2024-05-09 14:06:26 +08:00

23 lines
612 B
C#

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; }
}
}