提交当前本机整理版本

This commit is contained in:
cyf
2026-07-02 10:11:39 +00:00
parent c10a5d64c7
commit aacefa24f8
822 changed files with 196665 additions and 14263 deletions
+41 -1
View File
@@ -1,4 +1,44 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Sy
using System.Text;
namespace Lskj.Interface.Api
{
/// <summary>
/// 程序事件类型
/// </summary>
public enum OperateEvent
{
BeforeModuleDataLoad = 1,
BeforeModuleDataChange = 3,
AfterModuleDataChange = 4,
BeforeModuleStateChange = 5,
AfterModuleStateChange = 6,
BeforeModuleAuditStateChange = 7,
AfterModuleAuditStateChange = 8,
BeforeModuleContextMenu = 9,
AfterModuleContextMenu = 10,
BeforeModuleDataDelete = 11,
AfterModuleDataDelete = 12,
AfterGridDragComplete = 13,
/// <summary>
/// 接口控件按钮点击后
/// </summary>
AfterLabApiBtnClick = 14,
/// <summary>
/// 搜索按钮点击前
/// </summary>
BeforeSearchBtnClick = 15,
/// <summary>
/// 搜索按钮点击后
/// </summary>
AfterSearchBtnClick = 16,
Loop = 99,
Timer = 100
}
}