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.
 
 
 

27 lines
538 B

using Tiobon.Core.Model.Models.RootTkey;
using Tiobon.Core.Model.Tenants;
namespace Tiobon.Core.Model.Models;
/// <summary>
/// 业务数据 <br/>
/// 多租户 (Id 隔离)
/// </summary>
public class BusinessTable : BaseEntity, ITenantEntity
{
/// <summary>
/// 无需手动赋值
/// </summary>
public long TenantId { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 金额
/// </summary>
public decimal Amount { get; set; }
}