2021-09-30 09:27:59 +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,
|
2022-06-18 14:58:15 +08:00
|
|
|
|
typeof(W_DeviceConfig),
|
|
|
|
|
|
typeof(W_MeasureResult)
|
2021-09-30 09:27:59 +08:00
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|