using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 车公司资料 /// public class CarData { int id; /// /// 主键编号 /// public int Id { get { return id; } set { id = value; } } string unitArea; /// /// 单位地区 /// public string UnitArea { get { return unitArea; } set { unitArea = value; } } string unitName; /// /// 单位名称 /// public string UnitName { get { return unitName; } set { unitName = value; } } string address; /// /// 单位地址 /// public string Address { get { return address; } set { address = value; } } string contact; /// /// 联系人 /// public string Contact { get { return contact; } set { contact = value; } } string tel; /// /// 联系电话 /// public string Tel { get { return tel; } set { tel = value; } } string email; /// /// 电子邮箱 /// public string Email { get { return email; } set { email = value; } } string fax; /// /// 传真号码 /// public string Fax { get { return fax; } set { fax = value; } } /// /// 车描述 /// public string CarDes { get; set; } /// /// 车年限 /// public string CarAge { get; set; } /// /// 车图片名 /// public string CarPicName { get; set; } /// /// 车图片路径 /// public string CarPicPath { get; set; } string otherInformation; /// /// 其他信息 /// public string OtherInformation { get { return otherInformation; } set { otherInformation = value; } } int companyOrGuide; /// /// 车公司或导游地接 /// public int CompanyOrGuide { get { return companyOrGuide; } set { companyOrGuide = value; } } int score; /// /// 服务评分 /// public int Score { get { return score; } set { score = value; } } /// /// 相关的车辆资质 /// public string QualificationScore { get; set; } /// /// 车辆2-4年新,VIP及以上需要2年新 /// public string CarAgeScore { get; set; } /// /// 车身干净,无文字图片等 /// public string CleanImgScore { get; set; } /// /// 车内整洁、无异味 /// public string SmellScore { get; set; } /// /// 提前备水,纸巾等 /// public string WaterPaperScore { get; set; } /// /// 车辆配置高(皮座椅等) /// public string HardwareScore { get; set; } /// /// 时间概念强 /// public string TimeScore { get; set; } /// /// 安全意识高 /// public string SafetyScore { get; set; } /// /// 司机驾龄时间长,提前熟悉路线 /// public string DrivingAgeScore { get; set; } int operators; /// /// 操作人 /// public int Operators { get { return operators; } set { operators = value; } } string operatorsDate; /// /// 操作时间 /// public string OperatorsDate { get { return operatorsDate; } set { operatorsDate = value; } } int isDel; /// /// 删除标识 /// public int IsDel { get { return isDel; } set { isDel = value; } } } }