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

23 lines
293 B

  1. //
  2. namespace SafeCampus.System;
  3. /// <summary>
  4. /// 角色种子数据
  5. /// </summary>
  6. public class SysRoleSeedData : ISqlSugarEntitySeedData<SysRole>
  7. {
  8. public IEnumerable<SysRole> SeedData()
  9. {
  10. return SeedDataUtil.GetSeedData<SysRole>("seed_sys_role.json");
  11. }
  12. }