/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * Description: 暂无 ***********************************************************************/ using System; using System.Collections.Generic; namespace CoreCms.Net.Model.ViewModels.DTO { /// /// 优惠券相关 /// public class GetMyCouponResultDto { /// /// 优惠券编码 /// public string couponCode { get; set; } /// /// 优惠券名称 /// public string couponName { get; set; } /// /// 优惠券id /// public int promotionId { get; set; } /// /// 是否使用 /// public bool isUsed { get; set; } /// /// 谁领取了 /// public int userId { get; set; } /// /// 被谁用了 /// public string usedId { get; set; } /// /// 创建时间 /// public DateTime createTime { get; set; } /// /// 更新时间 /// public DateTime? updateTime { get; set; } /// /// 条件 /// public string expression1 { get; set; } /// /// 结果 /// public string expression2 { get; set; } /// /// 是否结束 /// public bool isExpire { get; set; } /// /// 开始时间 /// public DateTime startTime { get; set; } /// /// 结束时间 /// public DateTime endTime { get; set; } /// /// 开始时间缩写 /// public string stime { get; set; } /// /// 结束时间缩写 /// public string etime { get; set; } /// /// 条件集合 /// public List conditions { get; set; } = new(); /// /// 结果集合 /// public List results { get; set; } = new(); } }