平安校园
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

SysPositionSeedData.cs 316 B

2ヶ月前
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. }