/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/1/31 21:45:10
* Description: 暂无
***********************************************************************/
namespace CoreCms.Net.Model.FromBody
{
//APi=========================================================================
///
/// 获取团购列表请求参数
///
public class FMGroupGetListPost
{
///
/// 类型
///
public int type { get; set; } = 0;
///
/// 页码
///
public int page { get; set; } = 1;
///
/// 分页数量
///
public int limit { get; set; } = 10;
///
/// 活动状态
///
public int status { get; set; } = 0;
}
///
/// 获取团购秒杀商品详情
///
public class FMGetGoodsDetial
{
public int id { get; set; }
public int type { get; set; }
public bool needSku { get; set; } = false;
}
}