36 lines
841 B
C#
36 lines
841 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ModelBasic
|
|
{
|
|
public class CreateTable
|
|
{
|
|
|
|
/// <summary>
|
|
/// 创建 固定格式 数据表
|
|
/// 显示机器人的数据
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public static DataTable CreateDataTableForShowDeviceImportData()
|
|
{
|
|
var dt = new DataTable();
|
|
dt.Columns.Add("Index");
|
|
dt.Columns.Add("模型名称");
|
|
dt.Columns.Add("J1");
|
|
dt.Columns.Add("J2");
|
|
dt.Columns.Add("J3");
|
|
dt.Columns.Add("J4");
|
|
dt.Columns.Add("J5");
|
|
dt.Columns.Add("J6");
|
|
return dt;
|
|
}
|
|
|
|
|
|
}
|
|
}
|