31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
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; }
|
|
}
|
|
}
|