初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
namespace Hncore.Pass.PaymentCenter.Domain
{
public partial class TenantStore
{
public int Id { get; set; }
public int? TenantId { get; set; }
public string Name { get; set; }
public int? Type { get; set; }
public int? Theme { get; set; }
public int? Public { get; set; }
public string CourseGroups { get; set; }
public string LiveGroups { get; set; }
public string TextGroups { get; set; }
public string PackageGroups { get; set; }
public string SwiperGroups { get; set; }
public string NavGroups { get; set; }
public string AdGroups { get; set; }
public string ArticleGroups { get; set; }
public string ActivityGroups { get; set; }
public int? DeleteTag { get; set; }
public DateTime? CreateTime { get; set; }
public string CustomerTel { get; set; }
public int? Appid { get; set; }
public string AppSecret { get; set; }
public int? IsOpen { get; set; }
}
}