ComplianceServer/oldcode/Model/QueryMap/WeappUserInfoView.cs

36 lines
1.2 KiB
C#

using System;
namespace WX.CRM.Model.QueryMap
{
public class WeappUserInfoView
{
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 EID { get; set; }
public DateTime? OPTIME { get; set; }
public string SubProductName { get; set; }
}
}