24 lines
536 B
C#
24 lines
536 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
/// <summary>
|
|
/// 微信uin和目录对应关系表
|
|
/// </summary>
|
|
[Table("UPDEV.WX_EXCLUDEWEIXIN")]
|
|
public partial class WX_EXCLUDEWEIXIN
|
|
{
|
|
[Key]
|
|
[StringLength(50)]
|
|
public string ALIAS { get; set; }
|
|
|
|
/// <summary>
|
|
/// 微信username
|
|
/// </summary>
|
|
[StringLength(100)]
|
|
public string USERNAME { get; set; }
|
|
|
|
}
|
|
}
|