using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity
{
///
///
///
public class RequestDiscoveryPhone: PageQuery
{
///
/// 探索发现的类型(latest:最新recommend:推荐dynamic:热门)
///
public string discoveryType
{
get; set;
}
///
/// 通过关键词搜索探索发现列表
///
public string keyWord
{ get; set; }
///
/// 所属分类ID
///
public int bannerId { get; set; }
}
public class RequestApplySendEmail
{
///
///
///
public string firstName
{ get; set; }
///
///
///
public string lastName { get; set; }
///
///
///
public string birthday { get; set; }
///
///
///
public string address { get; set; }
///
///
///
public string email { get; set; }
///
/// 语言
///
public string language { get; set; }
}
}