tijian_tieying/web/cyqdata-master/Extension/IField.cs
2025-02-20 12:14:39 +08:00

36 lines
653 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Text;
namespace CYQ.Data.Extension
{
/// <summary>
/// 实现此接口来扩展自定义IField语法
/// </summary>
public interface IField
{
/// <summary>
/// 内部的SQL语句
/// </summary>
string Sql
{
get;
set;
}
/// <summary>
/// 列序号[列的顺序]
/// </summary>
int ColID
{
get;
}
/// <summary>
/// 列名或表名
/// </summary>
string Name
{
get;
}
}
}