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.
 
 
 
 
 

135 lines
3.6 KiB

using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Entity.Sugar
{
///<summary>
///
///</summary>
[SugarTable("SETB_SYS_Country")]
public partial class SETB_SYS_Country : ModelContext
{
public SETB_SYS_Country()
{
}
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public string CountryID { get; set; }
public const string CN_COUNTRYID = "CountryID";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public string CountryName { get; set; }
public const string CN_COUNTRYNAME = "CountryName";
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
public string Country_ENCode { get; set; }
public const string CN_Country_ENCode = "Country_ENCode";
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string CountrySlug { get; set; }
public const string CN_COUNTRYSLUG = "CountrySlug";
/// <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:Y摸Τ N摸礚
/// Default:
/// Nullable:True
/// </summary>
public string Effective { get; set; }
public const string CN_EFFECTIVE = "Effective";
/// <summary>
/// Desc:Y埃 Nゼ埃
/// Default:N
/// Nullable:True
/// </summary>
public string DelStatus { get; set; }
public const string CN_DELSTATUS = "DelStatus";
/// <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>
[SugarColumn(IsPrimaryKey = true)]
public string OrgID { get; set; }
public const string CN_ORGID = "OrgID";
}
}