123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.MpMainModels2
- {
- public partial class UserSnActInfo
- {
- 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 Remark { get; set; }
- public int SourceStoreId { get; set; }
- public DateTime? SourceShipDate { get; set; }
- public int SourceSnType { get; set; }
- public string SourceSnNo { get; set; }
- public string StandardDate { get; set; }
- public int ActiveStatus { get; set; }
- public int ActUserId { get; set; }
- public string EffectEndCycleDate { get; set; }
- public string EffectStartCycleDate { get; set; }
- public string EffectEndActDate { get; set; }
- public string EffectStartActDate { get; set; }
- public int SnStoreId { get; set; }
- public DateTime? SnShipDate { get; set; }
- public int SnType { get; set; }
- public string SnNo { get; set; }
- public int BrandId { get; set; }
- public int UserId { get; set; }
- }
- }
|