using System;
namespace BP.Sys
{
///
/// 表单事件类的常量
///
public class EventListFrm
{
///
/// 表单载入前
///
public const string FrmLoadBefore = "FrmLoadBefore";
///
/// 表单载入后
///
public const string FrmLoadAfter = "FrmLoadAfter";
///
/// 表单保存前
///
public const string SaveBefore = "SaveBefore";
///
/// 表单保存后
///
public const string SaveAfter = "SaveAfter";
///
/// 创建OID
///
public const string CreateOID = "CreateOID";
///
/// 附件上传前
///
public const string AthUploadeBefore = "AthUploadeBefore";
///
/// 上传后.
///
public const string AthUploadeAfter = "AthUploadeAfter";
///
/// 从表保存前
///
public const string DtlRowSaveBefore = "DtlRowSaveBefore";
///
/// 从表保存后
///
public const string DtlRowSaveAfter = "DtlRowSaveAfter";
///
/// 从表保存前
///
public const string DtlRowDelBefore = "DtlRowDelBefore";
///
/// 从表保存后
///
public const string DtlRowDelAfter = "DtlRowDelAfter";
}
}