using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 司机费用类
///
public class CarInfo
{
///
/// 司机编号
///
public int Id { get; set; }
///
/// 国家
///
public string Country { get; set; }
///
/// 城市
///
public string City { get; set; }
///
/// 车类型
///
public string CarType { get; set; }
///
/// 服务类型
///
public string ServiceType { get; set; }
///
/// 用车时间
///
public string When { get; set; }
///
/// 价格
///
public string Price { get; set; }
///
/// 币种
///
public string Currency { get; set; }
///
/// 超时费用
///
public string OvertimeFee { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 操作员工编号
///
public int Oper { get; set; }
///
/// 操作时间
///
public string OpDate { get; set; }
///
/// 删除标识
///
public int Isdel { get; set; }
}
}