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.
|
-
- //
-
-
-
-
-
-
-
-
- namespace SafeCampus.System;
-
- /// <summary>
- /// 职位表种子数据
- /// </summary>
- public class SysPositionSeedData : ISqlSugarEntitySeedData<SysPosition>
- {
- public IEnumerable<SysPosition> SeedData()
- {
- return SeedDataUtil.GetSeedData<SysPosition>("seed_sys_position.json");
- }
- }
|