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.
25 lines
486 B
C#
25 lines
486 B
C#
using DS.Module.Core.Data;
|
|
|
|
namespace DS.WMS.Core.System.Entity;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("sys_role")]
|
|
public class SysRole : BaseTenantModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 角色唯一编码
|
|
/// </summary>
|
|
public string RoleCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 角色名称
|
|
/// </summary>
|
|
public string RoleName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 公司Id
|
|
/// </summary>
|
|
public string CompanyId { get; set; }
|
|
} |