23 lines
612 B
C#
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; }
|
|
}
|
|
}
|