63 lines
1.5 KiB
C#
63 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Entity.Crm
|
|
{
|
|
[Table("SOFT_USER")]
|
|
public 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(100)]
|
|
public string? ACTIVERESID { get; set; }
|
|
|
|
public decimal? ACTCAMPAINID { get; set; }
|
|
|
|
public DateTime? UTIME { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public decimal? COMPANYID { get; set; }
|
|
|
|
public DateTime? REGDATE { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string? RESID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string? UMID { get; set; }
|
|
|
|
public decimal? EID { get; set; }
|
|
|
|
public string? OPENID { get; set; }
|
|
public string? OPENPLAT { get; set; }
|
|
public DateTime? LASTLOGINTIME { get; set; }
|
|
public string? UNIONID { get; set; }
|
|
public string? LIVECODE { get; set; }
|
|
public string? REGSOURCE { get; set; }
|
|
}
|
|
} |