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;
|
|
private String key; //关键字
|
private int couponType;//券类型
|
private int shopType;//店铺类型
|
private String minCouponPrice;//券后价
|
private String maxCouponPrice;
|
private String minLiJin; //礼金
|
private String maxLiJin;
|
private String minActualPrice;//到手价
|
private String maxActualPrice;
|
private String minSalesNum; //月销
|
private String maxSalesNum;
|
private String minCommission; //佣金
|
private String maxCommission;
|
private String minCommissionRate; //佣金比例
|
private String maxCommissionRate;
|
|
|
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; }
|
}
|
|
}
|
}
|