/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* Description: 暂无
***********************************************************************/
namespace CoreCms.Net.Model.FromBody
{
///
/// 根据where查询条件和order排序获取列表
///
public class FMPageByWhereOrder
{
///
/// 当前页码
///
public int page { get; set; } = 1;
///
/// 每页数据量
///
public int limit { get; set; } = 10;
///
/// 判断条件
///
public string where { get; set; }
///
/// 排序
///
public string order { get; set; }
}
///
/// 根据int类型id加where查询条件和order排序获取列表(一般用于直接id分页)
///
public class FMPageByIntId
{
///
/// 其他数据
///
public object otherData { get; set; }
///
/// 序列
///
public int id { get; set; }
///
/// 当前页码
///
public int page { get; set; } = 1;
///
/// 每页数据量
///
public int limit { get; set; } = 10;
///
/// 判断条件
///
public string where { get; set; }
}
///
/// 根据String类型id加where查询条件和order排序获取列表(一般用于直接id分页)
///
public class FMPageByStringId
{
///
/// 序列
///
public string id { get; set; }
///
/// 当前页码
///
public int page { get; set; } = 1;
///
/// 每页数据量
///
public int limit { get; set; } = 10;
}
///
/// 根据String类型id加where查询条件和order排序获取列表(一般用于直接id分页)
///
public class FMPageByStringIdWhitStatus
{
///
/// 序列
///
public string id { get; set; }
///
/// 当前页码
///
public int page { get; set; } = 1;
///
/// 每页数据量
///
public int limit { get; set; } = 10;
///
/// 状态
///
public int status { get; set; } = 0;
}
}