ComplianceServer/code/Hg.Core.Entity/SoftUser.cs

63 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Entity
{
[Table("SOFT_USER")]
public class SoftUser
{
[Key]
public string? USERNAME { get; set; }
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; }
public string? REGPLATFORM { get; set; }
public short? ISACTIVE { get; set; }
public DateTime? ACTIVETIME { get; set; }
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; }
public string? RESID { 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; }
}
}