You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System; using System.Linq; using System.Text; using SqlSugar;
namespace Entity.Sugar { ///<summary>
///
///</summary>
[SugarTable("SETB_ORG_Venue")] public partial class SETB_ORG_Venue : ModelContext { public SETB_ORG_Venue() {
} /// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true)] public string VenueID { get; set; } public const string CN_VENUEID = "VenueID";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public string VenueName { get; set; } public const string CN_VENUENAME = "VenueName";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string VenueSlug { get; set; } public const string CN_VENUESLUG = "VenueSlug";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string ShortName { get; set; } public const string CN_SHORTNAME = "ShortName";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true)] public string LangType { get; set; } public const string CN_LANGTYPE = "LangType";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string CreateUser { get; set; } public const string CN_CREATEUSER = "CreateUser";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public DateTime? CreateDate { get; set; } public const string CN_CREATEDATE = "CreateDate";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string ModifyUser { get; set; } public const string CN_MODIFYUSER = "ModifyUser";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public DateTime? ModifyDate { get; set; } public const string CN_MODIFYDATE = "ModifyDate";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string Effective { get; set; } public const string CN_EFFECTIVE = "Effective";
/// <summary>
/// Desc:
/// Default:N
/// Nullable:True
/// </summary>
public string DelStatus { get; set; } public const string CN_DELSTATUS = "DelStatus";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string Website { get; set; } public const string CN_WEBSITE = "Website";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string Address { get; set; } public const string CN_ADDRESS = "Address";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public int? OrderByValue { get; set; } public const string CN_ORDERBYVALUE = "OrderByValue";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public string RegionID { get; set; } public const string CN_REGIONID = "RegionID";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public string CountryID { get; set; } public const string CN_COUNTRYID = "CountryID";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public string CityID { get; set; } public const string CN_CITYID = "CityID";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true)] public string OrgID { get; set; } public const string CN_ORGID = "OrgID";
} }
|