using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CY.Model.Inquiry { /// /// 询价结果模板类 /// public class InquiryResultModel { /// /// 厂商编号 /// public string FirmId { get; set; } /// /// 厂商名称 /// public string FirmName { get; set; } /// /// 等级图片路径 /// public string LevelImg { get; set; } /// /// 厂商QQ /// public string QQ { get; set; } /// /// 所得积分 /// public int Score { get; set; } /// /// 联系人 /// public string ConstactPerson { get; set; } /// /// 联系方式 /// public string ConstactType { get; set; } /// /// 询价价格 /// public decimal TotalPrice { get; set; } } }