19 lines
428 B
C#
19 lines
428 B
C#
namespace CRM.Core.DTO.Res
|
|
{
|
|
/// <summary>
|
|
/// rfm标签类
|
|
/// </summary>
|
|
public class RfmDto
|
|
{
|
|
public string username { get; set; }
|
|
public string appid { get; set; }
|
|
public int weight { get; set; }
|
|
public string labelname { get; set; }
|
|
public string mobile { get; set; }
|
|
public int? ch { get; set; }
|
|
public string deptcode { get; set; }
|
|
}
|
|
|
|
|
|
}
|