37 lines
1.3 KiB
C#
37 lines
1.3 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.WEAPP_USERINFO")]
|
|
public class WEAPP_USERINFO
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
public string OPENID { get; set; }
|
|
public string NICKNAME { get; set; }
|
|
public decimal GENDER { get; set; }
|
|
public string LANGUAGE { get; set; }
|
|
public string CITY { get; set; }
|
|
public string PROVINCE { get; set; }
|
|
public string COUNTRY { get; set; }
|
|
public string AVATARURL { get; set; }
|
|
public decimal? INFOTYPE { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
public DateTime? UTIME { get; set; }
|
|
public string MD5 { get; set; }
|
|
public decimal? ISUPDATE { get; set; }
|
|
public string UNIONID { get; set; }
|
|
public decimal? ISOK { get; set; }
|
|
public string FILENAME { get; set; }
|
|
public string ACCOUNTNUM { get; set; }
|
|
public decimal? SUBSCRIBE { get; set; }
|
|
public DateTime? SUBSCRIBETIME { get; set; }
|
|
public DateTime? UNSUBTIME { get; set; }
|
|
public string RESID { get; set; }
|
|
|
|
public decimal? RESIDVERIFY { get; set; }
|
|
}
|
|
}
|