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
468 B
14 lines
468 B
2 years ago
|
using GDZZ.Core;
|
||
|
using GDZZ.Core.Entity;
|
||
2 years ago
|
|
||
2 years ago
|
namespace GDZZ.CodeFirst;
|
||
2 years ago
|
|
||
|
public class SysUserDataScopeSeedData : ISeedData , ISqlSugarEntitySeedData<SysUserDataScope>
|
||
|
{ public IEnumerable<SysUserDataScope> HasData()
|
||
|
{ string json = @"[{""SysUserId"":175624015269957,""SysOrgId"":175624015089733},{""SysUserId"":278024843153477,""SysOrgId"":278024843092037}]
|
||
|
";
|
||
|
List<SysUserDataScope> list = JsonUtil.ToObject<List<SysUserDataScope>>(json);
|
||
|
|
||
|
return list;
|
||
|
}}
|