1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.PxcModels
- {
- public partial class ProductNorm
- {
- 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 LimitCount { get; set; }
- public int MerchantId { get; set; }
- public string Code { get; set; }
- public decimal CostPrice { get; set; }
- public int BuyCount { get; set; }
- public int Stock { get; set; }
- public int ProductId { get; set; }
- public decimal UserIntegral { get; set; }
- public decimal UserPrice { get; set; }
- public decimal Integral { get; set; }
- public decimal Price { get; set; }
- public string IdList { get; set; }
- public string ColName { get; set; }
- public int StartBuyCount { get; set; }
- }
- }
|