ab56a9bcf7
SVN-Revision: r240
47 lines
936 B
C#
47 lines
936 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Lskj.Model
|
|
{
|
|
/// <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,
|
|
|
|
Loop = 99,
|
|
Timer = 100
|
|
}
|
|
/// <summary>
|
|
/// 抓取类型
|
|
/// </summary>
|
|
public enum DirType
|
|
{
|
|
Pull = 0,
|
|
Push = 1,
|
|
Receive = 2,
|
|
/// <summary>
|
|
/// 被动推送,就是被抓取
|
|
/// </summary>
|
|
PassivePush = 3
|
|
}
|
|
}
|