年度变更建库软件5.0版本
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
908 B

4 months ago
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ESRI.ArcGIS.Geodatabase;
namespace Kingo.RuleCheck.AEHelper
{
public interface ITableAPI
{
ITable ITable
{
get;
}
/// <summary>
/// 关闭当前对象
/// </summary>
void CloseTable();
/// <summary>
/// 添加行
/// </summary>
object AddRows(DataTable pTable);
/// <summary>
/// 添加行
/// </summary>
/// <param name="pKV">字段、值集合</param>
/// <returns></returns>
object AddRow(Dictionary<string, object> pKV);
/// <summary>
/// 删除指定行
/// </summary>
/// <param name="OID"></param>
/// <returns></returns>
bool DelRow(int OID);
}
}