ComplianceServer/oldcode/Core.Model/Entity/SOFT_USER.cs

64 lines
1.6 KiB
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[Table("SOFT_USER")]
public partial class SOFT_USER
{
[Key]
[StringLength(50)]
public string USERNAME { get; set; }
[Required]
[StringLength(50)]
public string USERPASS { get; set; }
public decimal? USERNO { get; set; }
public decimal? USERLEVEL { get; set; }
public short? ACCEPTSMS { get; set; }
public decimal? REGCAMPAINID { get; set; }
[StringLength(1)]
public string REGPLATFORM { get; set; }
public short? ISACTIVE { get; set; }
public DateTime? ACTIVETIME { get; set; }
[StringLength(18)]
public string ACTIVERESID { get; set; }
public int? ACTCAMPAINID { get; set; }
public DateTime? UTIME { get; set; }
public DateTime? CTIME { get; set; }
public decimal? COMPANYID { get; set; }
public DateTime? REGDATE { get; set; }
[StringLength(18)]
public string RESID { get; set; }
public string EMAIL { get; set; }
public string IP { get; set; }
public decimal? EID { get; set; }
/// <summary>
/// ***第三方用户ID***
/// </summary>
public string OPENID { get; set; }
/// <summary>
/// ***第三方平台***
/// </summary>
public string OPENPLAT { get; set; }
public string UNIONID { get; set; }
public string LIVECODE { get; set; }
public string REGSOURCE { get; set; }
}
}