You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CaiQie/RfidWeb/FromSQl.cs

150 lines
4.0 KiB
C#

1 month ago
using Chloe.PostgreSQL.DDL;
using Chloe.RDBMS.DDL;
using DB.Entity;
using DB;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Microsoft.VisualBasic.ApplicationServices;
using Tool;
namespace RfidWeb
{
public partial class FromSQl : Form
{
public FromSQl()
{
InitializeComponent();
}
private void ucBtnExt1_BtnClick(object sender, EventArgs e)
{
//DbInfo.Init(typeof(RoleMapper).Assembly);
DbInfo.Init(typeof(UserInfo).Assembly);
var dbContext = DbFactory.GetContext;
1 month ago
// new PostgreSQLTableGenerator(dbContext).CreateTables(TableCreateMode.CreateIfNotExists);
1 month ago
//dbContext.Insert(new Role()
//{
// ID = SnowflakeFactory.NewId,
// RoleName = "管理层",
// RoleLevel = 1
//});
//dbContext.Insert(new Role()
//{
// ID = SnowflakeFactory.NewId,
// RoleName = "设备层",
// RoleLevel = 2
//});
//dbContext.Insert(new Role()
//{
// ID = SnowflakeFactory.NewId,
// RoleName = "使用层",
// RoleLevel = 3
//});
dbContext.Insert(new UserInfo()
{
ID = SnowflakeFactory.NewId,
RoleId =
7254091842295074816,
UserName = "管理员1",
Pwd = "E10ADC3949BA59ABBE56E057F20F883E",
});
dbContext.Insert(new UserInfo()
{
ID = SnowflakeFactory.NewId,
RoleId =
7254091842295074816,
UserName = "管理员2",
Pwd = "E10ADC3949BA59ABBE56E057F20F883E",
});
dbContext.Insert(new UserInfo()
{
ID = SnowflakeFactory.NewId,
RoleId =
7254091842295074816,
UserName = "管理员2",
Pwd = "E10ADC3949BA59ABBE56E057F20F883E",
});
dbContext.Insert(new UserInfo()
{
ID = SnowflakeFactory.NewId,
RoleId =
1 month ago
7254091842987134976,
1 month ago
UserName = "设备层1",
1 month ago
Pwd = "E10ADC3949BA59ABBE56E057F20F883E",
1 month ago
});
dbContext.Insert(new UserInfo()
{
ID = SnowflakeFactory.NewId,
RoleId =
1 month ago
7254091842987134976,
1 month ago
UserName = "设备层2",
1 month ago
Pwd = "E10ADC3949BA59ABBE56E057F20F883E",
1 month ago
});
dbContext.Insert(new UserInfo()
{
ID = SnowflakeFactory.NewId,
RoleId =
1 month ago
7254091842987134976,
1 month ago
UserName = "设备层2",
1 month ago
Pwd = "E10ADC3949BA59ABBE56E057F20F883E",
1 month ago
});
dbContext.Insert(new UserInfo()
{
ID = SnowflakeFactory.NewId,
RoleId =
1 month ago
7254091842999717888,
1 month ago
UserName = "使用层1",
1 month ago
Pwd = "E10ADC3949BA59ABBE56E057F20F883E",
1 month ago
});
dbContext.Insert(new UserInfo()
{
ID = SnowflakeFactory.NewId,
RoleId =
1 month ago
7254091842999717888,
1 month ago
UserName = "使用层2",
1 month ago
Pwd = "E10ADC3949BA59ABBE56E057F20F883E",
1 month ago
});
dbContext.Insert(new UserInfo()
{
ID = SnowflakeFactory.NewId,
RoleId =
1 month ago
7254091842999717888,
1 month ago
UserName = "使用层2",
1 month ago
Pwd = "E10ADC3949BA59ABBE56E057F20F883E",
1 month ago
});
// new PostgreSQLTableGenerator(dbContext).CreateTables(TableCreateMode.CreateNew);
}
}
}