/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ namespace CoreCms.Net.Model.FromBody { /// /// 优惠券相关提交验证实体 /// public class FMCouponForUserCouponPost { public int page { get; set; } = 1; public int limit { get; set; } = 100; public string display { get; set; } = "all"; /// /// 购物车数据 /// public string ids { get; set; } = null; } /// /// 优惠券相关提交验证实体 /// public class FMCouponForGetCouponKeyPost { public string key { get; set; } } /// /// 优惠券相关提交验证实体 /// public class FMCouponForCouponListPost { public int limit { get; set; } = 3; } }