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.
 
 
 
 
 

56 lines
1.3 KiB

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