using System; using System.Collections.Generic; namespace MySystem.ReadModels { public partial class Coupons { public int Id { get; set; } public int Sort { get; set; } public int QueryCount { get; set; } public int Status { get; set; } public int Version { get; set; } public DateTime? CreateDate { get; set; } public DateTime? UpdateDate { get; set; } public string CreateMan { get; set; } public string UpdateMan { get; set; } public string SeoTitle { get; set; } public string SeoKeyword { get; set; } public string SeoDescription { get; set; } public DateTime? ExpireEndDate { get; set; } public DateTime? ExpireStartDate { get; set; } public decimal FullReduceData { get; set; } public decimal FullReduceMoney { get; set; } public ulong AndPromotion { get; set; } public ulong IsSuperpose { get; set; } public int PublicMaxByDay { get; set; } public int PublicMax { get; set; } public DateTime? PublicEndDate { get; set; } public DateTime? PublicStartDate { get; set; } public ulong IsReUse { get; set; } public string RepeatCondition { get; set; } public int RepeatType { get; set; } public ulong IsRepeat { get; set; } public DateTime? UseEndDate { get; set; } public DateTime? UseStartDate { get; set; } public int UserMinLevel { get; set; } public int UserMaxLevel { get; set; } public string ProductId { get; set; } public string ProductColId { get; set; } public string MerchantId { get; set; } public int Kind { get; set; } public decimal Stock { get; set; } public ulong IsPublic { get; set; } public ulong IsNewUser { get; set; } public string Explanation { get; set; } public string Name { get; set; } } }