25 lines
530 B
C#
25 lines
530 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Data;
|
|||
|
|
using WMS.Model.SystemManage;
|
|||
|
|
|
|||
|
|
namespace WMS.IData.ISystemManage
|
|||
|
|
{
|
|||
|
|
public interface ISystemParams
|
|||
|
|
{
|
|||
|
|
DataTable GetSysParamsList(SystemParamsModel model);
|
|||
|
|
|
|||
|
|
string GetParamValue(string paramType);
|
|||
|
|
|
|||
|
|
void AddSysParamsData(SystemParamsModel model);
|
|||
|
|
|
|||
|
|
void UpdateSysParamsData(SystemParamsModel model);
|
|||
|
|
|
|||
|
|
void DeleteSysParamsData(SystemParamsModel model);
|
|||
|
|
|
|||
|
|
void DeleteSy();
|
|||
|
|
}
|
|||
|
|
}
|