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.
109 lines
2.8 KiB
109 lines
2.8 KiB
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace Entity.Sugar
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("SETB_PDT_ServiceByPlanPricingAndInventory")]
|
|
public partial class SETB_PDT_ServiceByPlanPricingAndInventory : ModelContext
|
|
{
|
|
public SETB_PDT_ServiceByPlanPricingAndInventory()
|
|
{
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string LangID { get; set; }
|
|
public const string CN_LANGID = "LangID";
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string Guid { get; set; }
|
|
public const string CN_GUID = "Guid";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string ServiceID { get; set; }
|
|
public const string CN_SERVICEID = "ServiceID";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string PlanID { get; set; }
|
|
public const string CN_PLANID = "PlanID";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string SpecID { get; set; }
|
|
public const string CN_SPECID = "SpecID";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string DestinationID { get; set; }
|
|
public const string CN_DESTINATIONID = "DestinationID";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public int? UnitPrice { get; set; }
|
|
public const string CN_UNITPRICE = "UnitPrice";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public int? InterbankPrice { get; set; }
|
|
public const string CN_INTERBANKPRICE = "InterbankPrice";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string Currency { get; set; }
|
|
public const string CN_CURRENCY = "Currency";
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public int? Inventory { get; set; }
|
|
public const string CN_INVENTORY = "Inventory";
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|