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

52 lines
1.1 KiB
C#

3 weeks ago

1 month ago
using DB.Entity;
using DB;
using System;
using System.Collections.Generic;
using System.Windows.Forms;
3 weeks ago
using Chloe.PostgreSQL.DDL;
using Chloe.RDBMS.DDL;
1 month ago
using Tool;
2 weeks ago
using DB.Service;
2 weeks ago
using Tool.Model;
1 month ago
namespace RfidWeb
{
public partial class FromSQl : Form
{
public FromSQl()
{
InitializeComponent();
3 weeks ago
4 weeks ago
1 month ago
}
private void ucBtnExt1_BtnClick(object sender, EventArgs e)
{
//DbInfo.Init(typeof(RoleMapper).Assembly);
DbInfo.Init(typeof(UserInfo).Assembly);
2 weeks ago
var rfidSetting = RfidSetting.Current;
1 month ago
var dbContext = DbFactory.GetContext;
2 weeks ago
1 week ago
new PostgreSQLTableGenerator(dbContext).CreateTables(TableCreateMode.CreateIfNotExists);
2 weeks ago
2 weeks ago
1 month ago
}
1 month ago
3 weeks ago
private long GetId=> SnowflakeFactory.NewId;
1 month ago
private void ucBtnExt2_BtnClick(object sender, EventArgs e)
{
2 weeks ago
DbInfo.Init(typeof(UserInfo).Assembly);
UpdateLogService service = new UpdateLogService();
service.AddOrUpdateLog(TestFactory.TestUser(), "test", 1);
3 weeks ago
1 month ago
}
1 month ago
}
}