TG.WXCRM.V4/Model/MAP/Wx_Fast_UserModel.cs

40 lines
969 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Collections.Generic;
using WX.CRM.Model.Entity;
namespace WX.CRM.Model.MAP
{
public class Wx_Fast_UserModel
{
public WX_FAST_USERNAME fast_main { get; set; }
public List<WX_FAST_USERNAME_DL> fast_child { get; set; }
}
public class Wx_Fast_Search
{
/// <summary>
/// 客户微信用户名
/// </summary>
public string USERNAME { get; set; }
/// <summary>
/// 客户微信号
/// </summary>
public string ALIAS { get; set; }
/// <summary>
/// 客户微信昵称
/// </summary>
public string NICKNAME { get; set; }
/// <summary>
/// 类型 1:订单客户 2普通客户
/// </summary>
public decimal TYPE { get; set; }
/// <summary>
/// 订单ID
/// </summary>
public decimal ORDERID { get; set; }
public string CONREMARK { get; set; }
}
}