123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models.KxsMain
- {
- public partial class Products
- {
- 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 string ProductCode { get; set; }
- public string Title2 { get; set; }
- public string Title { get; set; }
- public ulong IsRecommend3 { get; set; }
- public ulong IsRecommend2 { get; set; }
- public int MonthSale { get; set; }
- public string MerchantColId { get; set; }
- public string NormJson { get; set; }
- public string LinkUrl { get; set; }
- public string ShareDetail { get; set; }
- public string NormIds { get; set; }
- public int MerchantClassId { get; set; }
- public string KeyWord { get; set; }
- public int LimitCount { get; set; }
- public int FareTemplateId { get; set; }
- public decimal CostPrice { get; set; }
- public DateTime? PublishDate { get; set; }
- public decimal UserIntegral { get; set; }
- public decimal MemberPrice { get; set; }
- public decimal Integral { get; set; }
- public decimal Price { get; set; }
- public decimal SourcePrice { get; set; }
- public ulong IsLimit { get; set; }
- public DateTime? EndDate { get; set; }
- public DateTime? StartDate { get; set; }
- public int MerchantId { get; set; }
- public ulong IsRecommend { get; set; }
- public decimal GoodPercent { get; set; }
- public int CommentCount { get; set; }
- public string ColId { get; set; }
- public string DetailPicPath { get; set; }
- public string ListPicPath { get; set; }
- public int BuyCount { get; set; }
- public int Stock { get; set; }
- public string Contents { get; set; }
- public string Details { get; set; }
- public string ProductName { get; set; }
- public int ProductKind { get; set; }
- public int BannerSort { get; set; }
- public string BannerPhoto { get; set; }
- public ulong IsBanner { get; set; }
- public int StartBuyCount { get; set; }
- }
- }
|