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.
38 lines
908 B
38 lines
908 B
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); |
|
} |
|
}
|
|
|