wyb
2021-05-11 49ce087bd2a34a150597e1cc1da157af242c0b6d
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Pcb.Domain
{
    public class IntegralOrderSearch
    {
        /// <summary>
        /// 查询关键字(商品名)
        /// </summary>
        public string SearchKey { get; set; }
 
        /// <summary>
        /// 订单编号
        /// </summary>
        public string OrderNo { get; set; }
 
        /// <summary>
        /// 快递单号
        /// </summary>
        public string ShipNo { get; set; }
 
        /// <summary>
        /// 商品编号
        /// </summary>
        public int? ProId { get; set; }
 
        /// <summary>
        /// 客户编号
        /// </summary>
        //public int? MbId { get; set; }
        public string MbId { get; set; }
 
        /// <summary>
        /// 商品兑换数量
        /// </summary>
        public int? ProCount { get; set; }
 
        /// <summary>
        /// 消耗积分
        /// </summary>
        public int? CostIntegral { get; set; }
 
        /// <summary>
        /// 商品状态
        /// </summary>
        public int? Status { get; set; }
 
        /// <summary>
        /// 订单兑换时间
        /// </summary>
        public DateTime? ExchangeDate { get; set; }
 
        /// <summary>
        /// 订单派送时间
        /// </summary>
        public DateTime? DeliveryDate { get; set; }
 
        /// <summary>
        /// 订单完成时间
        /// </summary>
        public DateTime? CompleteDate { get; set; }
 
        /// <summary>
        /// 时间区间最小值
        /// </summary>
        public DateTime? MinTime { get; set; }
 
        /// <summary>
        /// 时间区间最小值
        /// </summary>
        public DateTime? MaxTime { get; set; }
 
        /// <summary>
        /// 时间查询类型 1兑换时间  2派送时间  3完成时间
        /// </summary>
        public int? TimeType { get; set; }
 
        /// <summary>
        /// ReceiverCountryId
        /// </summary>    
        public int? ReceiverCountryId
        {
            get; set;
        }
 
        /// <summary>
        /// ReceiverCountryId2
        /// </summary>    
        public int? ReceiverCountryId2
        {
            get; set;
        }
 
        /// <summary>
        /// ReceiverCountryName
        /// </summary>    
        public string ReceiverCountryName
        {
            get; set;
        }
 
        /// <summary>
        /// ReceiverName
        /// </summary>    
        public string ReceiverName
        {
            get; set;
        }
 
        /// <summary>
        /// ReceiverCompany
        /// </summary>    
        public string ReceiverCompany
        {
            get; set;
        }
 
        /// <summary>
        /// ReceiverAddress
        /// </summary>    
        public string ReceiverAddress
        {
            get; set;
        }
 
        /// <summary>
        /// ReceiverTel
        /// </summary>    
        public string ReceiverTel
        {
            get; set;
        }
 
        /// <summary>
        /// ReceiverPostCode
        /// </summary>    
        public string ReceiverPostCode
        {
            get; set;
        }
 
        /// <summary>
        /// ReceiverStateId
        /// </summary>    
        public int? ReceiverStateId
        {
            get; set;
        }
 
 
        /// <summary>
        /// ReceiverStateId2
        /// </summary>    
        public int? ReceiverStateId2
        {
            get; set;
        }
        /// <summary>
        /// ReceiverState
        /// </summary>    
        public string ReceiverState
        {
            get; set;
        }
 
        /// <summary>
        /// ReceiverCity
        /// </summary>    
        public string ReceiverCity
        {
            get; set;
        }
 
        /// <summary>
        /// ReceiverAddrId
        /// </summary>    
        public int? ReceiverAddrId
        {
            get; set;
        }
 
        /// <summary>
        /// ReceiverAddrId2
        /// </summary>    
        public int? ReceiverAddrId2
        {
            get; set;
        }
 
        /// <summary>
        /// 是否限制最大读取信息数量
        /// </summary>
        public int? MaxCount { get; set; }
    }
}