12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models.Main
- {
- public partial class KqProducts
- {
- 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 Name { get; set; }
- public int CountOfBox { get; set; }
- public int MinStock { get; set; }
- public int Kind { get; set; }
- public int NoticeMoneyUnit { get; set; }
- public int ReqMoneyUnit { get; set; }
- public string AdColId { get; set; }
- public decimal DefaultDeposit { get; set; }
- public ulong MerNameWithStar { get; set; }
- public ulong SingleDepositApi { get; set; }
- public decimal ActTradeAmount { get; set; }
- public decimal PosPrice { get; set; }
- public int MainStoreId { get; set; }
- public string SpProductType { get; set; }
- public decimal FluxProfit { get; set; }
- public decimal FluxAmount { get; set; }
- }
- }
|