1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models.Main1
- {
- public partial class UserSnDelayChange
- {
- 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? SourceSnShipDate { get; set; }
- public int SourceSnType { get; set; }
- public string SourceSnNo { get; set; }
- public int ActivityRuleId { get; set; }
- public int SnDelayDay { get; set; }
- public int RecUserId { get; set; }
- public string AfterEndCycleDate { get; set; }
- public string BeforeEndCycleDate { get; set; }
- public string InitCycleDate { get; set; }
- public int SnStoreId { get; set; }
- public int SnType { get; set; }
- public string SnNo { get; set; }
- public string ChangeRecordNo { get; set; }
- public int BrandId { get; set; }
- public int UserId { get; set; }
- }
- }
|