using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Entity.Sugar
{
///
///
///
[SugarTable("SETB_PDT_ServiceByOther")]
public partial class SETB_PDT_ServiceByOther : ModelContext
{
public SETB_PDT_ServiceByOther()
{
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string LangID { get; set; }
public const string CN_LANGID = "LangID";
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string Guid { get; set; }
public const string CN_GUID = "Guid";
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string ServiceID { get; set; }
public const string CN_SERVICEID = "ServiceID";
/////
///// Desc:
///// Default:
///// Nullable:True
/////
//public string CountryID { get; set; }
//public const string CN_COUNTRYID = "CountryID";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string CityID { get; set; }
public const string CN_CITYID = "CityID";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string Address { get; set; }
public const string CN_ADDRESS = "Address";
///
/// Desc:
/// Default:
/// Nullable:True
///
public string CusTitle { get; set; }
public const string CN_CUSTITLE = "CusTitle";
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? CreateDate { get; set; }
public const string CN_CREATEDATE = "CreateDate";
}
}