1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models.KxsMain
- {
- public partial class StoreHouse
- {
- 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 ManageMobile { get; set; }
- public int StoreKind { get; set; }
- public int StoreStatus { get; set; }
- public string LimitTopUserId { get; set; }
- public string Areas { get; set; }
- public string Remark { get; set; }
- public int OutNum { get; set; }
- public int LaveNum { get; set; }
- public int TotalNum { get; set; }
- public int StoreType { get; set; }
- public string ParentNav { get; set; }
- public int ParentStoreId { get; set; }
- public string ManagerEmail { get; set; }
- public int ManageUserId { get; set; }
- public string Address { get; set; }
- public string ProductName { get; set; }
- public string BrandId { get; set; }
- public int UserId { get; set; }
- public string StoreName { get; set; }
- public string StoreNo { get; set; }
- public DateTime? AuthDate { get; set; }
- public ulong AuthFlag { get; set; }
- public int ThisMonthSendCount { get; set; }
- public string FilePath { get; set; }
- public decimal Deposit { get; set; }
- public int OpId { get; set; }
- }
- }
|