68 lines
1.7 KiB
C#
68 lines
1.7 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Zxd.Entity.Zxd
|
|
{
|
|
[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 int? USERNO { get; set; }
|
|
|
|
public int? USERLEVEL { get; set; }
|
|
|
|
public short? ACCEPTSMS { get; set; }
|
|
|
|
public int? 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 int? COMPANYID { get; set; }
|
|
|
|
public DateTime? REGDATE { get; set; }
|
|
|
|
[StringLength(18)]
|
|
public string? RESID { get; set; }
|
|
[StringLength(50)]
|
|
public string? UMID { get; set; }
|
|
public string? EMAIL { get; set; }
|
|
public string? IP { get; set; }
|
|
public int? 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; }
|
|
}
|
|
} |