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.
73 lines
1.9 KiB
C#
73 lines
1.9 KiB
C#
using HslCommunication.LogNet;
|
|
|
|
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 Chloe.PostgreSQL.DDL;
|
|
using Chloe.RDBMS.DDL;
|
|
using DB;
|
|
using DB.Entity;
|
|
using NewLife.Data;
|
|
using NewLife.Log;
|
|
using Tool;
|
|
|
|
namespace RfidWeb
|
|
{
|
|
public partial class Form1 : Form
|
|
{
|
|
private ILogNet logNet = ILogNetFactory.GetLogNet;
|
|
|
|
public Form1()
|
|
{
|
|
|
|
|
|
AppContext.SetSwitch("Npgsql.EnableLegacyTimestampBehavior", true);
|
|
AppContext.SetSwitch("Npgsql.DisableDateTimeInfinityConversions", true);
|
|
InitializeComponent();
|
|
|
|
// 如果所有的日志在记录之前需要在控制台显示出来
|
|
logNet.BeforeSaveToFile += (object sender, HslEventArgs e) =>
|
|
{
|
|
Console.WriteLine(e.HslMessage.ToString());
|
|
};
|
|
logNet.ConsoleOutput = true;
|
|
logNet.WriteInfo("nihao");
|
|
|
|
}
|
|
|
|
private void button1_Click(object sender, EventArgs e)
|
|
{
|
|
DbInfo.Init(typeof(RoleMapper).Assembly);
|
|
|
|
|
|
var dbContext = DbFactory.GetContext;
|
|
new PostgreSQLTableGenerator(dbContext).CreateTables(TableCreateMode.CreateNew);
|
|
|
|
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
|
|
});
|
|
}
|
|
}
|
|
}
|