using System; using System.Collections.Generic; namespace MySystem.Models.Push { public partial class Merchant { public int Id { get; set; } public int Sort { get; set; } public int Status { get; set; } public int Version { get; set; } public DateTime? CreateDate { get; set; } public DateTime? UpdateDate { get; set; } public string RsaPubKey { get; set; } public string RsaPriKey { get; set; } public string AesSecret { get; set; } public string MerchantNo { get; set; } public string MerchantName { get; set; } } }