36 lines
858 B
C#
36 lines
858 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.WX_MANUALADDWEIXINFRIEND")]
|
|
public partial class WX_MANUALADDWEIXINFRIEND
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string RESID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string WORKALIAS { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string WORKUSERNAME { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string USERNAME { get; set; }
|
|
|
|
public decimal? ADDTYPE { get; set; }
|
|
|
|
public decimal? RECORDID { get; set; }
|
|
|
|
public decimal? INNERUSERID { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public string RECORDTXT { get; set; }
|
|
}
|
|
}
|