OpenAuth.Net/OpenAuth.App/Form/IForm.cs
yubaolee 99daa8752f 增加对sql只返回string的支持;
修复添加表单时,如果关联的数据库已存在的bug
2022-01-19 15:49:29 +08:00

7 lines
135 B
C#

namespace OpenAuth.App
{
public interface IForm
{
string GetSql(Repository.Domain.Form form, string dbType);
}
}