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.

14 lines
431 B

using GDZZ.Core;
using GDZZ.Core.Entity;
namespace GDZZ.CodeFirst;
public class SysEmpPosSeedData : ISeedData , ISqlSugarEntitySeedData<SysEmpPos>
{ public IEnumerable<SysEmpPos> HasData()
{ string json = @"[{""SysEmpId"":177325484421189,""SysPosId"":177325394366533},{""SysEmpId"":182314279026757,""SysPosId"":177325394366533}]
";
List<SysEmpPos> list = JsonUtil.ToObject<List<SysEmpPos>>(json);
return list;
}}