using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Entity.Sugar
{
///
///
///
[SugarTable("SETB_CMS_Member")]
public partial class SETB_CMS_Member : ModelContext
{
public SETB_CMS_Member()
{
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string MemberID { get; set; }
public const string CN_MemberID = "MemberID";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string MemberPicture { get; set; }
public const string CN_MemberPicture = "MemberPicture";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string FirstName { get; set; }
public const string CN_FirstName = "FirstName";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string LastName { get; set; }
public const string CN_LastName = "LastName";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Title { get; set; }
public const string CN_Title = "Title";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string MemberType { get; set; }
public const string CN_MemberType = "MemberType";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Account { get; set; }
public const string CN_Account = "Account";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Password { get; set; }
public const string CN_Password = "Password";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Email { get; set; }
public const string CN_Email = "Email";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Phone { get; set; }
public const string CN_Phone = "Phone";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string CountryID { get; set; }
public const string CN_CountryID = "CountryID";
///
/// Desc:
/// Default:N
/// Nullable:True
///
public string ArgumentID { get; set; }
public const string CN_ArgumentID = "ArgumentID";
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? BirthDate { get; set; }
public const string CN_BirthDate = "BirthDate";
///
/// Desc:
/// Default:N
/// Nullable:True
///
public string Status { get; set; }
public const string CN_Status = "Status";
///
/// Desc:
/// Default:N
/// Nullable:True
///
public string Subscribe { get; set; }
public const string CN_Subscribe = "Subscribe";
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? CreateDate { get; set; }
public const string CN_CreateDate = "CreateDate";
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string OrgID { get; set; }
public const string CN_OrgID = "OrgID";
}
}