25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
-
- //
-
-
-
-
-
-
-
-
- namespace SafeCampus.System;
-
- /// <summary>
- /// 职位表种子数据
- /// </summary>
- public class SysPositionSeedData : ISqlSugarEntitySeedData<SysPosition>
- {
- public IEnumerable<SysPosition> SeedData()
- {
- return SeedDataUtil.GetSeedData<SysPosition>("seed_sys_position.json");
- }
- }
|