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#

12 months ago
using DS.Module.Core.Data;
namespace DS.WMS.Core.System.Entity;
/// <summary>
///
/// </summary>
[SqlSugar.SugarTable("sys_role")]
11 months ago
public class SysRole : BaseTenantModel<long>
12 months ago
{
/// <summary>
/// 角色唯一编码
/// </summary>
public string RoleCode { get; set; }
/// <summary>
/// 角色名称
/// </summary>
public string RoleName { get; set; }
/// <summary>
/// 公司Id
/// </summary>
public string CompanyId { get; set; }
}