admin
2020-06-12 109d30c2eb833492ed11616227f150fcc8a6e2b9
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WindowsFormsApp1.entity
{
    class SearchInfo
    {
        public static int COUPON_TYPE_ALL=0;
        public static int COUPON_TYPE_HAVE = 1;
        public static int COUPON_TYPE_NO = 2;
 
 
        public static int SHOP_TYPE_ALL = 0;
        public static int SHOP_TYPE_TM = 1;
        public static int SHOP_TYPE_TAOBAO = 2;
 
        //关键字
        public String key
        {
            get { return key; }
            set { key = value; }
        }
 
        public int couponType {
            get { return couponType; }
            set { couponType = value; }
        }
 
        public int shopType
        {
            get { return shopType; }
            set { shopType = value; }
        }
 
        //券后价
        public String minCouponPrice {
            get { return minCouponPrice; }
            set { minCouponPrice = value; }
        }
 
        public String maxCouponPrice
        {
            get { return maxCouponPrice; }
            set { maxCouponPrice = value; }
        }
 
        //礼金
        public String minLiJin
        {
            get { return minLiJin; }
            set { minLiJin = value; }
        }
 
        public String maxLiJin
        {
            get { return maxLiJin; }
            set { maxLiJin = value; }
        }
 
        //到手价
        public String minActualPrice
        {
            get { return minActualPrice; }
            set { minActualPrice = value; }
        }
 
        public String maxActualPrice
        {
            get { return maxActualPrice; }
            set { maxActualPrice = value; }
        }
        //月销
        public String minSalesNum
        {
            get { return minSalesNum; }
            set { minSalesNum = value; }
        }
 
        public String maxSalesNum
        {
            get { return maxSalesNum; }
            set { maxSalesNum = value; }
        }
        //佣金
        public String minCommission
        {
            get { return minCommission; }
            set { minCommission = value; }
        }
 
        public String maxCommission
        {
            get { return maxCommission; }
            set { maxCommission = value; }
        }
 
 
        //佣金比例
 
        public String minCommissionRate
        {
            get { return minCommissionRate; }
            set { minCommissionRate = value; }
        }
 
        public String maxCommissionRate
        {
            get { return maxCommissionRate; }
            set { maxCommissionRate = value; }
        }
 
    }
}