using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Entity.Sugar
{
///
///
///
[SugarTable("SETB_PDT_ServiceTruckCostRules")]
public partial class SETB_PDT_ServiceTruckCostRules : ModelContext
{
public SETB_PDT_ServiceTruckCostRules()
{
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string QSID { get; set; }
public const string CN_QSID = "QSID";
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string TruckID { get; set; }
public const string CN_TRUCKID = "TruckID";
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string CityID { get; set; }
public const string CN_CITYID = "CityID";
///
/// Desc:
/// Default:
/// Nullable:True
///
public int? Price { get; set; }
public const string CN_PRICE = "Price";
}
}