岗位、部门种子数据

This commit is contained in:
陈淳
2022-09-20 20:57:01 +08:00
parent 55979e90dc
commit 5772de888c
2 changed files with 293 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Model.Models;
namespace Yi.Framework.Model.SeedData
{
public class DictionarySeed : AbstractSeed<DictionaryEntity>
{
public override List<DictionaryEntity> GetSeed()
{
return Entitys;
}
}
}