LaJiFenLei/Waste.CreateDB/Program.cs

19 lines
390 B
C#
Raw Permalink Normal View History

2025-07-16 17:37:16 +08:00
using System;
using Waste.Domain;
namespace Waste.CreateDB
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("开始创建表!");
var context = new CreateTable();
context.Create(false, 50,
typeof(W_DeviceConfig),
typeof(W_MeasureResult)
);
}
}
}