You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
1.9 KiB
80 lines
1.9 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMAPP.Entity.Sys;
|
||
|
using QMFrameWork.Data;
|
||
|
using QMAPP.DAL.Sys;
|
||
|
using System.Data;
|
||
|
|
||
|
namespace QMAPP.BLL.Sys
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 支持交互参数设置
|
||
|
/// 创建者:wangyf
|
||
|
/// 创建日期:2015.03.30
|
||
|
/// </summary>
|
||
|
public class SIParamSetBLL : BaseBLL
|
||
|
{
|
||
|
#region 获取流程设置信息
|
||
|
|
||
|
/// <summary>
|
||
|
/// 获取流程设置信息
|
||
|
/// </summary>
|
||
|
/// <param name="">条件</param>
|
||
|
/// <returns>信息</returns>
|
||
|
public SIParamSet Get(SIParamSet paramSet)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
return new SIParamSetDAL().Get(paramSet); ;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 插入支持交互参数设置
|
||
|
|
||
|
/// <summary>
|
||
|
/// 插入支持交互参数设置
|
||
|
/// </summary>
|
||
|
/// <returns>影响行数</returns>
|
||
|
public int SaveSIParamSet(SIParamSet paramSet)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
paramSet.ID = Guid.NewGuid().ToString();
|
||
|
return new SIParamSetDAL().SaveSIParamSet(paramSet); ;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
#region 保存支持交互参数设置
|
||
|
|
||
|
/// <summary>
|
||
|
/// 保存支持交互参数设置
|
||
|
/// </summary>
|
||
|
/// <returns>影响行数</returns>
|
||
|
public int UpdateSIParamSet(SIParamSet paramSet)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
return new SIParamSetDAL().UpdateSIParamSet(paramSet); ;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
throw ex;
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
|
||
|
}
|
||
|
}
|