namespace BP.CCBill
{
///
/// 方法类型模式
///
public class MethodModelClass
{
///
/// 链接或者按钮
///
public const string LinkButton = "LinkButton";
///
/// 方法
///
public const string Func = "Func";
///
/// 修改实体数据流程
///
public const string FlowBaseData = "FlowBaseData";
///
/// 新建实体流程
///
public const string FlowNewEntity = "FlowNewEntity";
///
/// 实体批量发起流程
///
public const string FlowEntityBatchStart = "FlowEntityBatchStart";
///
/// 新建实体流程
///
public const string FlowEtc = "FlowEtc";
}
public enum SearchDataRole
{
///
/// 只查询自己创建的
///
ByOnlySelf = 0,
///
/// 查询本部门创建的包含兼职部门
///
ByDept = 1,
///
/// 查询本部门(包含兼职部门)及子级部门
///
ByDeptAndSSubLevel = 2,
///
/// 根据角色设定的部门的集合
///
ByStationDept = 3,
///
/// 查询所有用户创建的数据信息
///
SearchAll = 4
}
public enum SearchDataRoleByDeptStation
{
///
/// 只查询自己创建的
///
ByOnlySelf = 0,
///
/// 查询本部门创建的包含兼职部门
///
ByDept = 1
}
///
/// 表单活动类型
///
public class FrmActionType
{
///
/// 创建
///
public const string Create = "Create";
///
///保存
///
public const string Save = "Save";
///
/// 提交
///
public const string Submit = "Submit";
///
/// 评论
///
public const string BBS = "BBS";
///
/// 打开
///
public const string View = "View";
///
/// 回滚数据
///
public const string DataVerReback = "DataVerReback";
///
/// 发起流程
///
public const string StartFlow = "StartFlow";
///
/// 发起注册流程
///
public const string StartRegFlow = "StartRegFlow";
///
/// 流程修改实体数据
///
public const string FlowBaseData = "FlowBaseData";
///
/// 其他
///
public const string Etc = "Etc";
}
}