TG.WXCRM.V4/Model/Entity/SOFT_USER.cs

110 lines
2.8 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.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(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; }
}
public class SOFT_USER_VIEW
{
public string USERNAME { get; set; }
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; }
}
}