using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CY.Model.Inquiry { /// /// 公共询价模板 /// [Serializable] public class InquiryCommonModel { private List _afterWorkList; private List _inquiryInsideList; /// /// 印刷类型 /// public int PrintTypeId { get; set; } /// /// 印刷方式 /// public int PrintMode { get; set; } /// /// 纸张尺寸 /// public int PrintSizeId { get; set; } /// /// 纸张Id /// public int PaperId { get; set; } /// /// 克重 /// public int GramWeight { get; set; } /// /// 品牌Id /// public int BrandId { get; set; } /// /// 印刷数量 /// public int PrintCount { get; set; } /// /// 单位代码 /// public int Unit { get; set; } /// /// 单双面 /// public string SingleOrdouble { get; set; } /// /// 后道工序列表 /// public List AfterWorkList { get { if (_afterWorkList == null) { _afterWorkList = new List(); } return _afterWorkList; } set { if (_afterWorkList == null) { _afterWorkList = new List(); } _afterWorkList = value; } } /// /// 烫金宽 /// public decimal TJWith { get; set; } /// /// 烫金高 /// public decimal TJHight { get; set; } /// /// 烫银宽 /// public decimal TYWith { get; set; } /// /// 烫银高 /// public decimal TYHight { get; set; } /// /// UV宽 /// public decimal UVWith { get; set; } /// /// UV高 /// public decimal UVHight { get; set; } /// /// 凹凸宽 /// public decimal ATWith { get; set; } /// /// 凹凸高 /// public decimal ATHight { get; set; } /// /// 送货方式 /// public int DeliveryMode { get; set;} /// /// 票据方式 /// public int BillMode { get; set; } /// /// 纸张名称 /// public string PaperMP { get; set; } /// /// 名片款数 /// public int PrintBoxNumber { get; set; } /// /// 纸杯规格,扑克材质,喷绘材质 /// public int CupType { get; set; } /// /// 印刷颜色 /// public string PrintColor { get; set; } /// /// 设计种类 /// public int SJType { get; set; } /// /// 出样要求 /// public string DesignerDemand { get; set; } /// /// 印刷尺寸 /// public string PrintSizeName { get; set; } /// /// 覆膜类型 /// public int CoveredTypeId { get; set; } /// /// 压纹类型 /// public int EmbossTypeId { get; set; } /// /// 喷绘宽 /// public decimal BrushWidth { get; set; } /// /// 喷绘高 /// public decimal BrushHight {get;set;} /// /// 页数(黑白印件) /// public int PageNum { get; set; } /// /// 绳子类型Id /// public int RopeTypeId { get; set; } /// /// 绳子颜色 /// public string RopeColor { get; set; } /// /// 信封形状 /// public string EnvelopType { get; set; } /// /// PVC类型(pvc卡和人像卡) /// public string PVCType { get; set; } /// /// PVC卡厚度 /// public string PVCThick { get; set; } /// /// 烫金类型 /// public string GildingType { get; set; } /// /// 装订方式 /// public int BindingMode { get; set; } /// /// 拉封方式 /// public string LaFeng { get; set; } /// /// 拉绳类型 /// public string LsType { get; set; } /// /// 卡套类型 /// public string KtType { get; set; } /// /// 印刷机器ID /// public int EquipmentId { get; set; } /// /// 联数 /// public string RLNum { get; set; } /// /// 套号号段开始位置 /// public string ThStart { get; set; } /// /// 套号号段结束位置 /// public string ThEnd { get; set; } /// /// 胶头位置 /// public string JTWZ { get; set; } /// /// 封面类型 /// public string FrontType { get; set; } /// /// 印刷要求 /// public string pDemand { get; set; } /// /// 是否是自定义尺寸,1表示是,0表示不是 /// public int IsDefinedSize { get; set; } /// /// 自定义尺寸宽 /// public string firstSize { get; set; } /// /// 自定义尺寸长 /// public string secondSize { get; set; } /// /// 厚度 /// public string thirdSize { get; set; } /// /// LED材质 /// public int LedMaterial { get; set; } /// /// 是否安装 /// public int IsInstall { get; set; } /// /// 招牌字名 /// public string CharacterName { get; set; } /// /// 厚度 /// public string Thickness { get; set; } /// /// 数码快印印刷类型 /// public string DigitalPrintType { get; set; } /// /// 不干胶形状 /// public string Shape { get; set; } /// /// 画册,书刊的内页参数列表 /// public List InquiryInsideList { get { if (_inquiryInsideList == null) { _inquiryInsideList = new List(); } return _inquiryInsideList; } set { if (_inquiryInsideList == null) { _inquiryInsideList = new List(); } _inquiryInsideList = value; } } #region 用于显示 /// /// 印刷方式名称 /// public string PrintModeName { get; set; } /// /// 印刷类型名称 /// public string PrintTypeName { get; set; } /// /// 印刷数量描述 /// public string PrintCountName { get; set; } /// /// 印刷要求 /// public string PrintDemand { get; set; } /// /// 后道工序要求 /// public string AfterWorksDemand { get; set; } /// /// 交货方式名称 /// public string DeliveryModeName { get; set; } /// /// 票据名称 /// public string BillModeName { get; set; } /// /// 备注 /// public string Remarks { get; set; } #endregion #region 询价价格记录 /// /// 询价价格明细 /// public InquiryDetail InquiryDetailObj { get; set; } #endregion } }