TG.WXCRM.V4/Model/Entity/WX_FAST_USERNAME_DL.cs

67 lines
1.7 KiB
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;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.WX_FAST_USERNAME_DL")]
public class WX_FAST_USERNAME_DL
{
[Key]
[Column(Order = 0)]
/// <summary>
/// 批次号
/// </summary>
public decimal PICI { get; set; }
[Key]
[Column(Order = 1)]
/// <summary>
/// 工作微信用户名
/// </summary>
public string JOBUSERNAME { get; set; }
/// <summary>
/// 工作微信号
/// </summary>
public string JOBALIAS { get; set; }
/// <summary>
/// 工作微信昵称
/// </summary>
public string JOBNICKNAME { get; set; }
[Key]
[Column(Order = 2)]
/// <summary>
/// 客户微信用户名
/// </summary>
public string USERNAME { get; set; }
/// <summary>
/// 客户微信号
/// </summary>
public string ALIAS { get; set; }
/// <summary>
/// 客户微信昵称
/// </summary>
public string NICKNAME { get; set; }
/// <summary>
/// 时间
/// </summary>
public DateTime CTIME { get; set; }
/// <summary>
/// 类型 1:订单客户 2普通客户
/// </summary>
public decimal TYPE { get; set; }
/// <summary>
/// 0:正常 1已经删除
/// </summary>
public decimal ISDEL { get; set; }
/// <summary>
/// 订单ID
/// </summary>
public decimal ORDERID { get; set; }
public string CONREMARK { get; set; }
}
}