using System; using System.Collections.Generic; namespace MySystem.Models.Main { public partial class ProductFareTemp { 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 decimal MoreFee { get; set; } public decimal MoreAmount { get; set; } public decimal FirstFee { get; set; } public decimal FirstAmount { get; set; } public int MerchantId { get; set; } public int TransportMode { get; set; } public int MeterMode { get; set; } public ulong IsFree { get; set; } public int SendDate { get; set; } public string SendAddress { get; set; } public string SendAreas { get; set; } public string Name { get; set; } } }