/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * 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; } }