OpenAuth.Net/OpenAuth.App/Interface/ICustomerForm.cs
yubaolee 679dc613c1 同步OpenAuth.Core
修复mvc三级菜单;
Reposiroty单元测试读取webapi配置文件;
修复日志打印2次;
2021-02-20 22:06:02 +08:00

17 lines
647 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.

namespace OpenAuth.App.Interface
{
/// <summary>
/// 开发者自定义表单的统一接口
/// <para>例如FrmLeaveReqApp为请假表单对应的应用层实现该接口可以自动向数据库中插入对应的记录</para>
/// </summary>
public interface ICustomerForm
{
/// <summary>
/// 该接口定义自定义表单模式时需实现向数据库写入表单数据
/// </summary>
/// <param name="flowInstanceId">表单对应的流程实例ID</param>
/// <param name="frmData">表单数据</param>
void Add(string flowInstanceId, string frmData);
}
}