22 lines
464 B
C#
22 lines
464 B
C#
using System;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Windows.Forms;
|
|
using WeifenLuo.WinFormsUI.Docking;
|
|
|
|
namespace DTTest
|
|
{
|
|
public partial class E { }
|
|
public partial interface IModelManagement
|
|
{
|
|
/// <summary>
|
|
/// 导入模型
|
|
/// </summary>
|
|
/// <param name="dt_ModelName"></param>
|
|
void ImportModelToSql(DataTable dt_ModelName)
|
|
;
|
|
|
|
}
|
|
}
|