SysRoleDept.cs 390 B

12345678910111213
  1. namespace System
  2. {
  3. [SugarTable("sys_role_dept", "角色部门")]
  4. [Tenant(0)]
  5. public class SysRoleDept
  6. {
  7. [SugarColumn(ExtendedAttribute = ProteryConstant.NOTNULL, IsPrimaryKey = true)]
  8. public long RoleId { get; set; }
  9. [SugarColumn(ExtendedAttribute = ProteryConstant.NOTNULL, IsPrimaryKey = true)]
  10. public long DeptId { get; set; }
  11. }
  12. }