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

92 lines
2.7 KiB
C#

using DB.Entity;
using DB;
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using Chloe.PostgreSQL.DDL;
using Chloe.RDBMS.DDL;
using Tool;
using DB.Service;
using Tool.Model;
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 rfidSetting = RfidSetting.Current;
var dbContext = DbFactory.GetContext;
new PostgreSQLTableGenerator(dbContext).CreateTables(TableCreateMode.CreateIfNotExists);
Dictionary<string, string> dic = new Dictionary<string, string>
{
["CUTTING_SET_TEMPERATURE1_1"] = "裁刀1温度设定1",
["CUTTING_SET_TEMPERATURE1_2"] = "裁刀1温度设定2",
["CUTTING_SET_TEMPERATURE1_3"] = "裁刀1温度设定3",
["CUTTING_SET_TEMPERATURE1_4"] = "裁刀1温度设定4",
["CUTTING_SET_TEMPERATURE2_1"] = "裁刀2温度设定1",
["CUTTING_SET_TEMPERATURE2_2"] = "裁刀2温度设定2",
["CUTTING_SET_TEMPERATURE2_3"] = "裁刀2温度设定3",
["CUTTING_SET_TEMPERATURE2_4"] = "裁刀2温度设定4",
["CUTTING_SET_TIME1_1"] = "裁刀1时间设定1",
["CUTTING_SET_TIME1_2"] = "裁刀1时间设定2",
["CUTTING_SET_TIME1_3"] = "裁刀1时间设定3",
["CUTTING_SET_TIME1_4"] = "裁刀1时间设定4",
["CUTTING_SET_TIME2_1"] = "裁刀2时间设定1",
["CUTTING_SET_TIME2_2"] = "裁刀2时间设定2",
["CUTTING_SET_TIME2_3"] = "裁刀2时间设定3",
["CUTTING_SET_TIME2_4"] = "裁刀2时间设定4",
};
foreach (KeyValuePair<string, string> k in dic)
{
Point point = new Point();
point.ID = SnowflakeFactory.NewId;
point.DataType = "Uint32";
point.FromType = "参数";
point.PointAddress = k.Key;
point.PointName = k.Value;
dbContext.Insert(point);
}
}
private long GetId=> SnowflakeFactory.NewId;
private void ucBtnExt2_BtnClick(object sender, EventArgs e)
{
DbInfo.Init(typeof(UserInfo).Assembly);
UpdateLogService service = new UpdateLogService();
service.AddOrUpdateLog(TestFactory.TestUser(), "test", 1);
}
}
}