20 lines
400 B
C#
20 lines
400 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.External.Domain.Dto
|
|
{
|
|
/// <summary>
|
|
/// 客户信息
|
|
/// </summary>
|
|
public class WxworkCustomerDetailDto
|
|
{
|
|
/// <summary>
|
|
/// 客户资金量
|
|
/// </summary>
|
|
public string? CustomerCapital { get; set; }
|
|
}
|
|
}
|