using Lottomat.Application.Code;
namespace Lottomat.Application.Entity.LotteryNumberManage.Parameter
{
///
/// 获取彩票术语列表
///
public class GetLotteryGlossaryListArgEntity : BaseParameterEntity
{
///
/// 术语类别
///
public string GlossaryType { get; set; }
///
/// 索引
///
public int PageIndex { get; set; }
///
/// 每页显示数量
///
public int PageSize { get; set; }
}
///
/// 获取彩票术语
///
public class GetLotteryGlossaryArgEntity : BaseParameterEntity
{
///
/// 术语类别
///
public string GlossaryType { get; set; }
///
/// PK
///
public int PK { get; set; }
}
}