using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Webdiyer.WebControls.Mvc;
namespace Pcb.Domain
{
public class CraftFactoryPriceSearch
{
///
/// 搜索关键字
///
public string SearchKey { get; set; }
///
/// 搜索变量
///
public string ParamKey { get; set; }
///
/// 搜索工艺
///
public string CraftKey { get; set; }
///
/// 主键
///
public int? Id { get; set; }
///
/// 工厂键
///
public string FactoryKey { get; set; }
///
/// 主键列表
///
public string IdList { get; set; }
///
/// 状态
///
public int? Status { get; set; }
///
/// 状态列表
///
public string StatusList { get; set; }
///
/// 起始状态
///
public int? StartStatus { get; set; }
///
/// 起始创建时间
///
public DateTime? StartCreateTime { get; set; }
}
}