using OASystem.Domain.Attributes; using OASystem.Domain.Entities; using OASystem.Domain.Entities.Resource; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.ViewModels.Resource { public class CarDataView : Res_CarData { } public class CarDataSelectView { public int Id { get; set; } [Encrypted] public string UnitArea { get; set; } } public class CarDataDetailDataView { public int Id { get; set; } /// /// 服务评分 /// public int Score { get; set; } /// /// 区域 /// [Encrypted] public string UnitArea { get; set; } /// /// 公司名称 /// [Encrypted] public string UnitName { get; set; } /// /// 地址 /// [Encrypted] public string Address { get; set; } /// /// 联系人 /// [Encrypted] public string Contact { get; set; } /// /// 联系人手机号 /// [Encrypted] public string ContactTel { get; set; } /// /// 联系人邮箱 /// [Encrypted] public string ContactEmail { get; set; } /// /// 联系人传真 /// [Encrypted] public string ContactFax { get; set; } /// /// 其他信息 /// [Encrypted] public string OtherInfo { get; set; } /// /// 车描述 /// [Encrypted] public string CarDes { get; set; } /// /// 车图片路径 /// 存储多个 使用/r/n /// [Encrypted] public string CarPicPaths { get; set; } /// /// 相关的车辆资质 /// A B C 选择 /// [Encrypted] public string QualificationScore { get; set; } /// /// 车辆2-4年新,VIP及以上需要2年新 /// A B C 选择 /// [Encrypted] public string CarAgeScore { get; set; } /// /// 车身干净,无文字图片等 /// A B C 选择 /// [Encrypted] public string CleanImgScore { get; set; } /// /// 车内整洁、无异味 /// A B C 选择 /// [Encrypted] public string SmellScore { get; set; } /// /// 提前备水,纸巾等 /// A B C 选择 /// [Encrypted] public string WaterPaperScore { get; set; } /// /// 车辆配置高(皮座椅等) /// A B C 选择 /// [Encrypted] public string HardwareScore { get; set; } /// /// 时间概念强 /// A B C 选择 /// [Encrypted] public string TimeScore { get; set; } /// /// 安全意识高 /// A B C 选择 /// [Encrypted] public string SafetyScore { get; set; } /// /// 司机驾龄时间长,提前熟悉路线 /// A B C 选择 /// [Encrypted] public string DrivingAgeScore { get; set; } } public class CarDataMsgTipsView { [Encrypted] public string Area { get; set; } [Encrypted] public string Client { get; set; } [Encrypted] public string Contact { get; set; } public string Job { get; set; } [Encrypted] public string Tel { get; set; } public int CreateUserId { get; set; } public string CreatleUserName { get; set; } public DateTime CreateTime { get; set; } } }