username@email.com
2025-05-21 a980cd04341d71216e0f59bd4b7327fe9fc50032
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace CY.Model
{
    /// <summary>
    /// 询价详细信息
    /// </summary>
    [Serializable]
    public class InquiryDetail
    {
        /// <summary>
        /// 印刷数量
        /// </summary>
        public int PrintCount { get; set; }
 
        /// <summary>
        /// 纸价
        /// </summary>
        public decimal PaperPrice { get; set; }
 
        /// <summary>
        /// 印工费
        /// </summary>
        public decimal ImpressPrice { get; set; }
 
        /// <summary>
        /// CTP版费
        /// </summary>
        public decimal VersionCost { get; set; }
 
        /// <summary>
        /// 后工续费
        /// </summary>
        public decimal AfterWorkPrice { get; set; }
 
        /// <summary>
        /// 货运费
        /// </summary>
        public decimal CargagePrice { get; set; }
 
        /// <summary>
        /// 税费
        /// </summary>
        public decimal TaxationPrice { get; set; }
 
        /// <summary>
        /// 纸价信息
        /// </summary>
        public string PaperPriceStr { get; set; }
 
        /// <summary>
        /// 印工信息
        /// </summary>
        public string ImpressPriceStr { get; set; }
 
        /// <summary>
        /// 版费信息
        /// </summary>
        public string VersionCostStr { get; set; }
 
        /// <summary>
        /// 后续工信息
        /// </summary>
        public string AfterWorkPriceStr { get; set; }
 
        /// <summary>
        /// 总价
        /// </summary>
        public decimal TotalPrice { get; set; }
 
    }
}