12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.ReadModels
- {
- public partial class ActiveReward
- {
- 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 int ParentParentUserId { get; set; }
- public int ParentUserId { get; set; }
- public int MerUserId { get; set; }
- public int TopUserId { get; set; }
- public DateTime? ActDate { get; set; }
- public string Remark { get; set; }
- public string City { get; set; }
- public string Province { get; set; }
- public string RewardTips { get; set; }
- public int RewardRef { get; set; }
- public int SnStoreId { get; set; }
- public string ActTypeDesc { get; set; }
- public int ActType { get; set; }
- public int SnApplyUserId { get; set; }
- public int SnType { get; set; }
- public string KqSnNo { get; set; }
- public string KqMerNo { get; set; }
- public string MerUserNav { get; set; }
- public int DirectBuddyNo { get; set; }
- public string UserNav { get; set; }
- public int BrandId { get; set; }
- public decimal RuleRewardAmount { get; set; }
- public decimal DivideAmount { get; set; }
- public decimal RewardAmount { get; set; }
- public int RewardSourceUserId { get; set; }
- public DateTime? StandardDate { get; set; }
- public int MerchantId { get; set; }
- public int UserId { get; set; }
- }
- }
|