You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
543 B
C#

namespace DS.Module.Core.Data;
/// <summary>
/// 机构id全局过滤器
/// </summary>
public interface IOrgId
{
/// <summary>
/// 机构id
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "机构id")]
public long OrgId { get; set; }
}
/// <summary>
/// 共享机构过滤器
/// </summary>
public interface ISharedOrgId
{
/// <summary>
/// 机构id
/// </summary>
public long OrgId { get; set; }
/// <summary>
/// 是否共享
/// </summary>
public bool IsShared { get; set; }
}