1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.PxcModels
- {
- public partial class StoreSwapSn
- {
- 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 DateTime? SwapApplyDate { get; set; }
- public string SwapApplyOrderNo { get; set; }
- public string SwapSnNo { get; set; }
- public string SwapExtProductTypes { get; set; }
- public int RiskStatus { get; set; }
- public int BizStatus { get; set; }
- public int SwapStatus { get; set; }
- public string PosType { get; set; }
- public int SnStoreId { get; set; }
- public string ActTypeDesc { get; set; }
- public int ActType { get; set; }
- public DateTime? StandardDate { get; set; }
- public int SnType { get; set; }
- public string SnNo { get; set; }
- public int BrandId { get; set; }
- public int UserId { get; set; }
- }
- }
|