Files
“wanyongkang” b562aba2b1 忽略dll文件git
2023-07-29 10:19:42 +08:00

43 lines
1.6 KiB
C#

using Hncore.Infrastructure.DDD;
using System;
using System.Collections.Generic;
namespace Hncore.Pass.PaymentCenter.Domain
{
public partial class TenantEntity : EntityWithDelete<int>
{
public string Name { get; set; }
public string Logo { get; set; }
public string ContactName { get; set; }
public string ContactPhone { get; set; }
public string LicenseImg { get; set; }
public int? State { get; set; }
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
public int Deletetag { get; set; }
public string Bak { get; set; }
public int? Province { get; set; }
public int? City { get; set; }
public int? Area { get; set; }
public string Location { get; set; }
public string LegalPerson { get; set; }
public string Longlatitude { get; set; }
public string Introduction { get; set; }
public string ScopeOperation { get; set; }
public string Bank { get; set; }
public string Bankcode { get; set; }
public DateTime? Expiredtime { get; set; }
public string BankChargeName { get; set; }
public string BankChargeAdress { get; set; }
public string Appid { get; set; }
public string AppSecret { get; set; }
public string MchId { get; set; }
public string MchKey { get; set; }
public string MiniAppid { get; set; }
public string MiniAppSecret { get; set; }
public string MiniMchId { get; set; }
public string MiniMchKey { get; set; }
}
}