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.
13 lines
265 B
C#
13 lines
265 B
C#
10 months ago
|
namespace DS.Module.Core.Data;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 机构id全局过滤器
|
||
|
/// </summary>
|
||
|
public interface IOrgId
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 机构id
|
||
|
/// </summary>
|
||
|
[SqlSugar.SugarColumn(ColumnDescription = "机构id")]
|
||
|
public long OrgId { get; set; }
|
||
|
}
|