12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.PxcModels2
- {
- 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; }
- }
- }
|