12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.MpMainModels2
- {
- public partial class UserCardForWeChat
- {
- 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 MerchantId { get; set; }
- public string CardId { get; set; }
- public string EnterUrl { get; set; }
- public string EnterTips { get; set; }
- public string EnterName { get; set; }
- public ulong SupplyBalance { get; set; }
- public ulong SupplyBonus { get; set; }
- public string Prerogative { get; set; }
- public string Sku { get; set; }
- public string DateType { get; set; }
- public int Quantity { get; set; }
- public string Description { get; set; }
- public string Notice { get; set; }
- public string Color { get; set; }
- public string Title { get; set; }
- public string BrandName { get; set; }
- public string CodeType { get; set; }
- public string LogoUrl { get; set; }
- public string CardType { get; set; }
- }
- }
|