Files
lserp_cs_5.0/插件库/Zhaizj.Framework/ORM/Operation/FinderBase.cs
T
2026-07-10 15:25:05 +08:00

23 lines
374 B
C#

using System;
using System.Collections;
using System.Text;
namespace Zhaizj.Framework.ORM.Finder
{
internal abstract class FinderBase
{
protected ObjectInfo state;
public FinderBase()
{
}
public FinderBase(ObjectInfo state)
{
this.state = state;
}
public abstract IList Find();
}
}