using OASystem.Domain.Attributes; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; namespace OASystem.Domain.Dtos.Resource { public class QueryCarDataDto:DtoBase { /// /// 单位名称 /// public string UnitName { get; set; } /// /// 单位区域 /// public string UnitArea { get; set; } /// /// 联系人 /// public string Contact { get; set; } /// /// 联系人手机号 /// public string ContactTel { get; set; } } public class QueryCarDataDetailDto : PortDtoBase { public int Id { get; set; } } /// /// 添加车公司数据参数 /// public class AddCarDataDto { /// /// 区域 /// public string UnitArea { get; set; } /// /// 公司名称 /// public string UnitName { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 联系人 /// public string Contact { get; set; } /// /// 联系人手机号 /// public string ContactTel { get; set; } /// /// 联系人邮箱 /// public string ContactEmail { get; set; } /// /// 联系人传真 /// public string ContactFax { get; set; } /// /// 车描述 /// public string CarDes { get; set; } /// /// 车图片路径 /// 存储多个 使用/r/n /// public string CarPicPaths { get; set; } /// /// 其他信息 /// public string OtherInfo { get; set; } /// /// 服务评分 /// public int Score { get; set; } /// /// 相关的车辆资质 /// A B C 选择 /// public string QualificationScore { get; set; } /// /// 车辆2-4年新,VIP及以上需要2年新 /// A B C 选择 /// public string CarAgeScore { get; set; } /// /// 车身干净,无文字图片等 /// A B C 选择 /// public string CleanImgScore { get; set; } /// /// 车内整洁、无异味 /// A B C 选择 /// public string SmellScore { get; set; } /// /// 提前备水,纸巾等 /// A B C 选择 /// public string WaterPaperScore { get; set; } /// /// 车辆配置高(皮座椅等) /// A B C 选择 /// public string HardwareScore { get; set; } /// /// 时间概念强 /// A B C 选择 /// public string TimeScore { get; set; } /// /// 安全意识高 /// A B C 选择 /// public string SafetyScore { get; set; } /// /// 司机驾龄时间长,提前熟悉路线 /// A B C 选择 /// public string DrivingAgeScore { get; set; } /// /// 创建者Id /// public int CreateUserId { get; set; } /// /// 备注 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string Remark { get; set; } } /// /// 修改车公司数据参数 /// public class UpCarDataDto { /// /// Id /// public int Id { 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 CarDes { get; set; } /// /// 车图片路径 /// 存储多个 使用/r/n /// [Encrypted] public string CarPicPaths { get; set; } /// /// 其他信息 /// [Encrypted] public string OtherInfo { get; set; } /// /// 服务评分 /// public int Score { 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; } /// /// 备注 /// [Encrypted] public string Remark { get; set; } } public class DelCarDataDto { /// /// 删除Id /// public int Id { get; set; } /// /// 删除人Id /// public int DeleteUserId { get; set; } } }