using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Webdiyer.WebControls.Mvc;
namespace Pcb.Domain
{
///
/// IntegralGoods 查询
///
public class IntegralGoodsSearch
{
///
/// 查询关键字
///
public string SearchKey { get; set; }
///
/// 商品编号
///
public int Id { get; set; }
///
/// 商品名称
///
public string ProName { get; set; }
///
/// 商品描述
///
public string ProDiscribe { get; set; }
///
/// 商品库存
///
public int? ProStock { get; set; }
///
/// 已兑换数量
///
public int? ExchangedCount { get; set; }
///
/// 商品类别
///
public int? ProType { get; set; }
///
/// 消耗积分
///
public int? CostIntegral { get; set; }
///
/// 积分区间最小值
///
public int? MinIntegral { get; set; }
///
/// 积分区间最大值
///
public int? MaxIntegral { get; set; }
///
/// 成本区间最小值
///
public int? MinValue { get; set; }
///
/// 成本区间最大值
///
public int? MaxValue { get; set; }
///
/// 客户积分
///
public int? MbIntegral { get; set; }
///
/// 商品限购数量
///
public int? ProLimit { get; set; }
///
/// 商品状态
///
public int? Status { get; set; }
///
/// 商品上架时间
///
public DateTime? UpTime { get; set; }
///
/// 商品下架时间
///
public DateTime? DownTime { get; set; }
///
/// 商品标题
///
public string ProTitle { get; set; }
///
/// 商品成本
///
public int? ProValue { get; set; }
///
/// 商品创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 商品创建人
///
public string CreateBy { get; set; }
///
/// 商品更新时间
///
public DateTime? UpdateTime { get; set; }
///
/// 商品更新人
///
public string UpdateBy { get; set; }
///
/// 时间区间最小值
///
public DateTime? MinTime { get; set; }
///
/// 时间区间最小值
///
public DateTime? MaxTime { get; set; }
///
/// 时间查询类型 1上架时间 2下架时间 3创建时间 4更新时间
///
public int? TimeType { get; set; }
}
}