using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CY.Model
{
///
/// 询价详细信息
///
[Serializable]
public class InquiryDetail
{
///
/// 印刷数量
///
public int PrintCount { get; set; }
///
/// 纸价
///
public decimal PaperPrice { get; set; }
///
/// 印工费
///
public decimal ImpressPrice { get; set; }
///
/// CTP版费
///
public decimal VersionCost { get; set; }
///
/// 后工续费
///
public decimal AfterWorkPrice { get; set; }
///
/// 货运费
///
public decimal CargagePrice { get; set; }
///
/// 税费
///
public decimal TaxationPrice { get; set; }
///
/// 纸价信息
///
public string PaperPriceStr { get; set; }
///
/// 印工信息
///
public string ImpressPriceStr { get; set; }
///
/// 版费信息
///
public string VersionCostStr { get; set; }
///
/// 后续工信息
///
public string AfterWorkPriceStr { get; set; }
///
/// 总价
///
public decimal TotalPrice { get; set; }
}
}