using System;
using System.Collections.Generic;
using System.Text;
namespace TEAMModelOS.SDK.Module.SqlSugar.Configuration.Data
{
///
/// 分页参数
///
public class PageParm
{
///
/// 当前页
///
public int page { get; set; } = 1;
///
/// 每页总条数
///
public int limit { get; set; } = 15;
///
/// 编号
///
public int id { get; set; } = 0;
///
/// 编号
///
public string guid { get; set; }
///
/// 搜索关键字
///
public string key { get; set; }
///
/// 类型条件
///
public int types { get; set; } = 0;
///
/// 审核状态
///
public int audit { get; set; } = 0;
///
/// 搜索日期,可能是2个日期,通过-分隔
///
public string time { get; set; }
///
/// 排序方式,可根据数字来判断,
///
public int orderType { get; set; } = 0;
///
/// 排序的字段
///
public string field { get; set; }
///
/// 排序的类型 asc desc
///
public string order { get; set; } = "desc";
///
/// 动态条件
///
public string where { get; set; }
}
public class AppSearchParm
{
public string btime { get; set; }
public string etime { get; set; }
public string brand { get; set; }
public int saleType { get; set; } = 0;
public int activityTypes { get; set; } = 0;
}
}