平安校园
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

SysPositionSeedData.cs 316 B

il y a 2 mois
12345678910111213141516171819202122
  1. 
  2. //
  3. namespace SafeCampus.System;
  4. /// <summary>
  5. /// 职位表种子数据
  6. /// </summary>
  7. public class SysPositionSeedData : ISqlSugarEntitySeedData<SysPosition>
  8. {
  9. public IEnumerable<SysPosition> SeedData()
  10. {
  11. return SeedDataUtil.GetSeedData<SysPosition>("seed_sys_position.json");
  12. }
  13. }