using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Resource
{
///
/// 团组成本 司兼导资料表
///
[SugarTable("Res_CarGuides")]
public class Res_CarGuides : EntityBase
{
///
/// 国家
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string Country { get; set; }
///
/// 城市
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string City { get; set; }
///
/// 服务类型
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string ServiceType { get; set; }
///
/// 车类型
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string CarType { get; set; }
///
/// 用车报价
///
[SugarColumn(IsNullable = true,ColumnDataType = "decimal(10,2)")]
public decimal Offer { get; set; }
///
/// 司兼导费用
///
[SugarColumn(IsNullable = true,ColumnDataType = "decimal(10,2)")]
public decimal CGCost { get; set; }
///
/// 用车时长
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int RuningTime { get; set; }
///
/// 车超时费用/时
///
[SugarColumn(IsNullable = true,ColumnDataType = "decimal(10,2)")]
public decimal OvertimeFee { get; set; }
///
/// 司兼导超时费/时
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
public decimal CGOvertimeFee { get; set; }
///
/// 币种
///
[SugarColumn(IsNullable = true,ColumnDataType = "varchar(10)")]
public string Currency { get; set; }
}
}