12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.Models
- {
- public partial class StoreMachineApply
- {
- 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 DateTime? ApplyTime { get; set; }
- public uint? BrandId { get; set; }
- public string ApplyNo { get; set; }
- public uint? ApplyNum { get; set; }
- public uint? SendNum { get; set; }
- public uint? BoxNum { get; set; }
- public uint? LastApply { get; set; }
- public uint? MaxApply { get; set; }
- public uint? ActualApply { get; set; }
- public uint? UserId { get; set; }
- public uint? StoreId { get; set; }
- public uint? OrderId { get; set; }
- public string SwapSnExpand { get; set; }
- }
- }
|