You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
356 B
14 lines
356 B
using Tiobon.Core.Model.Models.RootTkey;
|
|
using Tiobon.Core.Model.Tenants;
|
|
|
|
namespace Tiobon.Core.Model.Models;
|
|
|
|
/// <summary>
|
|
/// 多租户-多表方案 业务表 子表 <br/>
|
|
/// </summary>
|
|
[MultiTenant(TenantTypeEnum.Tables)]
|
|
public class MultiBusinessSubTable : BaseEntity
|
|
{
|
|
public long MainId { get; set; }
|
|
public string Memo { get; set; }
|
|
} |